第<%= poll_question.question_number%>题: <%= poll_question.question_title %> [多选题] <%if poll_question.is_necessary == 1%> * <%end%> <% if poll_question.min_choices != 0 || poll_question.max_choices != 0 %>

<% if poll_question.min_choices != 0 && poll_question.max_choices != 0 %> 答题时最少选<%=poll_question.min_choices %>项、最多选<%=poll_question.max_choices %>项 <% elsif poll_question.min_choices != 0 %> 答题时最少选<%=poll_question.min_choices %>项 <% elsif poll_question.max_choices != 0 %> 答题时最多选<%=poll_question.max_choices %>项 <% end %>

<% end %>
<% poll_question.poll_votes.where("user_id = #{User.current.id}").each do |answer|%> <% end%>

<%= answer.poll_answer.answer_text == "" ? (answer.vote_text.nil? ? "其他" : answer.vote_text) : answer.poll_answer.answer_text %>