<%= @poll.polls_name%>
<%= @poll.polls_description %>
<% @poll_questions.each do |pq| %>
<% if pq.question_type == 1 %>
-
第<%= pq.question_number %>题:
<%= pq.question_title %>
<% if pq.is_necessary == 1 %>
*
<% end %>
<% elsif pq.question_type == 2 %>
-
第<%= pq.question_number %>题:
<%= pq.question_title %>
<% if pq.is_necessary == 1 %>
*
<% end %>
<% elsif pq.question_type == 3 %>
-
第<%= pq.question_number %>题:
<%= pq.question_title %>
<% if pq.is_necessary == 1 %>
*
<% end %>
>
<% elsif pq.question_type == 4 %>
-
第<%= pq.question_number %>题:
<%= pq.question_title %>
<% if pq.is_necessary == 1 %>
*
<% end %>
<% else %>
<% end %>
<% end %>
<%= pagination_links_full @obj_pages, @obj_count, :per_page_links => false, :remote => false, :flag => true%>
<% if @poll.polls_status == 2 %>
<%= link_to "提交",commit_poll_poll_path(@poll), :method => :post,:class => "ur_button",:format => 'js',:remote=>true %>
<% end %>
答题已完成 <%= format "%.2f" ,@percent %>%