<%= stylesheet_link_tag 'polls', :media => 'all' %>

<%= @poll.polls_name %> <%= l(:label_poll) %>

<% @poll_questions.each do |poll_question| %>
  1. 第<%= 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 %>