<%= @poll.polls_name %>
<%= l(:label_poll) %>
<% @poll_questions.each do |poll_question| %>
-
第<%= poll_question.question_number %>题:
<%= poll_question.question_title %>
[<%= options_show(poll_question.question_type) %>]
<% if poll_question.question_type == 1 || poll_question.question_type == 2 %>
<%= render :partial =>'choice_show', :locals =>{ :poll_question => poll_question } %>
<% else %>
<%= render :partial =>'quiz_answers', :locals =>{ :poll_question => poll_question } %>
<% end %>
<% end %>
<%= pagination_links_full @obj_pages, @obj_count, :per_page_links => false, :remote => false, :flag => true%>