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

某问卷统计

<% @poll_questions.each do |poll_question| %>
  1. 第<%= poll_question.question_number %>题:<%= poll_question.question_title %> [单选题]<% poll_question.poll_answers %>
    <%= render :partial =>'choice_show', :locals =>{ :poll_question => poll_question } %>
<% end %>
答题已完成 0%