32 lines
1.2 KiB
Plaintext
32 lines
1.2 KiB
Plaintext
<div class="ur_question_item checkbox ur_editor02">
|
|
<div class="ur_title">
|
|
<span class="title_index">
|
|
第<%= poll_question.question_number%>题:
|
|
</span>
|
|
<%= poll_question.question_title %>
|
|
<span class="title_index">[多选题]</span>
|
|
<%if poll_question.is_necessary == 1%>
|
|
<span class="ur_required" title="必答">*</span>
|
|
<%end%>
|
|
</div>
|
|
<%= 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") %>
|
|
<a class="ur_icon_edit" title="编辑" onclick="pollQuestionEdit(<%= poll_question.id%>);"></a>
|
|
<div class="cl"></div>
|
|
<div class="ur_inputs">
|
|
<table class="ur_table">
|
|
<tbody>
|
|
<% poll_question.poll_answers.reorder("answer_position").each do |poll_answer| %>
|
|
<tr>
|
|
<td>
|
|
<label>
|
|
<input class="ur_radio" type="checkbox" name="<%= poll_question %>" value="<%= poll_answer.answer_text%>" >
|
|
<%= poll_answer.answer_text%>
|
|
</label>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div><!--多选题显示 end--> |