56 lines
2.9 KiB
Plaintext
56 lines
2.9 KiB
Plaintext
<% mc_question_list = poll.poll_questions.where("question_type=1") %>
|
|
<% mcq_question_list = poll.poll_questions.where("question_type=2") %>
|
|
<% single_question_list = poll.poll_questions.where("question_type=3") %>
|
|
<% multi_question_list = poll.poll_questions.where("question_type=4") %>
|
|
<div class="testStatus" id="mc_question_list" style="display: <%=mc_question_list.count > 0 ? "" : "none" %>">
|
|
<h3 class="fontGrey3">单选题</h3>
|
|
<% mc_question_list.each do |poll_question| %>
|
|
<div id="poll_questions_<%= poll_question.id%>">
|
|
<div id="show_poll_questions_<%= poll_question.id %>">
|
|
<%= render :partial => 'show_MC', :locals => {:poll_question => poll_question} %>
|
|
</div>
|
|
<div id="edit_poll_questions_<%= poll_question.id %>" style="display: none;">
|
|
<%= render :partial => 'edit_MC', :locals => {:poll_question => poll_question} %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<div class="testStatus" id="mcq_question_list" style="display: <%=mcq_question_list.count > 0 ? "" : "none" %>">
|
|
<h3 class="fontGrey3">多选题</h3>
|
|
<% mcq_question_list.each do |poll_question| %>
|
|
<div id="poll_questions_<%= poll_question.id%>">
|
|
<div id="show_poll_questions_<%= poll_question.id %>">
|
|
<%= render :partial => 'show_MCQ', :locals => {:poll_question => poll_question} %>
|
|
</div>
|
|
<div id="edit_poll_questions_<%= poll_question.id %>" style="display: none;">
|
|
<%= render :partial => 'edit_MCQ', :locals => {:poll_question => poll_question} %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<div class="testStatus" id="single_question_list" style="display: <%=single_question_list.count > 0 ? "" : "none" %>">
|
|
<h3 class="fontGrey3">单行主观题</h3>
|
|
<% single_question_list.each do |poll_question| %>
|
|
<div id="poll_questions_<%= poll_question.id%>">
|
|
<div id="show_poll_questions_<%= poll_question.id %>">
|
|
<%= render :partial => 'show_single', :locals => {:poll_question => poll_question} %>
|
|
</div>
|
|
<div id="edit_poll_questions_<%= poll_question.id %>" style="display: none;">
|
|
<%= render :partial => 'edit_single', :locals => {:poll_question => poll_question} %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<div class="testStatus" id="multi_question_list" style="display: <%=multi_question_list.count > 0 ? "" : "none" %>">
|
|
<h3 class="fontGrey3">多行主观题</h3>
|
|
<% multi_question_list.each do |poll_question| %>
|
|
<div id="poll_questions_<%= poll_question.id%>">
|
|
<div id="show_poll_questions_<%= poll_question.id %>">
|
|
<%= render :partial => 'show_mulit', :locals => {:poll_question => poll_question} %>
|
|
</div>
|
|
<div id="edit_poll_questions_<%= poll_question.id %>" style="display: none;">
|
|
<%= render :partial => 'edit_mulit', :locals => {:poll_question => poll_question} %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div> |