2015-07-28 10:27:45 +08:00
|
|
|
<script>
|
|
|
|
|
|
|
|
</script>
|
2015-01-13 18:21:46 +08:00
|
|
|
<div class="ur_question_item radio ur_editor02">
|
|
|
|
<div class="ur_title">
|
2015-01-13 20:34:44 +08:00
|
|
|
<span class="title_index">
|
2015-01-14 16:15:33 +08:00
|
|
|
第<%= poll_question.question_number%>题:
|
2015-01-13 20:34:44 +08:00
|
|
|
</span>
|
2015-01-14 16:15:33 +08:00
|
|
|
<%= poll_question.question_title %>
|
2015-01-17 14:10:44 +08:00
|
|
|
<span class="title_index">[单选题]</span>
|
2015-01-14 16:15:33 +08:00
|
|
|
<%if poll_question.is_necessary == 1%>
|
|
|
|
<span class="ur_required" title="必答">*</span>
|
|
|
|
<%end%>
|
2015-01-13 18:21:46 +08:00
|
|
|
</div>
|
2015-07-28 10:27:45 +08:00
|
|
|
|
2015-01-15 17:15:29 +08:00
|
|
|
<%= link_to("", delete_poll_question_poll_index_path(:poll_question => poll_question.id),
|
|
|
|
method: :delete, :confirm => l(:text_are_you_sure), :remote => true, :class => "ur_icon_de") %>
|
2015-01-15 16:44:35 +08:00
|
|
|
<a class="ur_icon_edit" title="编辑" onclick="pollQuestionEdit(<%= poll_question.id%>);"></a>
|
2015-07-28 10:27:45 +08:00
|
|
|
<a class='ur_icon_add' title='向下插入' id="add_mc_<%=poll_question.id%>" onclick="chooseQuestionType('mc',<%=poll_question.id%>);"></a>
|
2015-01-13 18:21:46 +08:00
|
|
|
<div class="cl"></div>
|
|
|
|
<div class="ur_inputs">
|
|
|
|
<table class="ur_table" >
|
|
|
|
<tbody>
|
2015-01-14 16:15:33 +08:00
|
|
|
<% poll_question.poll_answers.reorder("answer_position").each do |poll_answer| %>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<label>
|
|
|
|
<input class="ur_radio" type="radio" name="<%= poll_question %>" value="<%= poll_answer.answer_text%>" >
|
|
|
|
<%= poll_answer.answer_text%>
|
|
|
|
</label>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
2015-01-13 18:21:46 +08:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2015-07-28 10:27:45 +08:00
|
|
|
</div><!--单选题显示 end-->
|
|
|
|
<!-- 新增问题 -->
|
|
|
|
<div id="insert_new_poll_question_mc_<%=poll_question.id%>">
|
|
|
|
</div>
|
|
|
|
<div id="div_mc_<%=poll_question.id%>" style="width: 50px;border: 1px solid #cbcbcb; display:none;position: absolute;padding: 5px;background: white">
|
|
|
|
<ul>
|
2015-07-28 16:20:01 +08:00
|
|
|
<li><a href="javascript:void(0);" onclick=" dismiss('mc',<%=poll_question.id%>);insert_MC('mc',<%=poll_question.question_number%>,<%=poll_question.id%>);">单选</a></li>
|
|
|
|
<li><a href="javascript:void(0);" onclick=" dismiss('mc',<%=poll_question.id%>);insert_MCQ('mc',<%=poll_question.question_number%>,<%=poll_question.id%>);">多选</a></li>
|
|
|
|
<li><a href="javascript:void(0);" onclick=" dismiss('mc',<%=poll_question.id%>);insert_SINGLE('mc',<%=poll_question.question_number%>,<%=poll_question.id%>);">单行主观</a></li>
|
|
|
|
<li><a href="javascript:void(0);" onclick=" dismiss('mc',<%=poll_question.id%>);insert_MULIT('mc',<%=poll_question.question_number%>,<%=poll_question.id%>);">多行主观</a></li>
|
2015-07-28 10:27:45 +08:00
|
|
|
</ul>
|
|
|
|
</div>
|