27 lines
749 B
Plaintext
27 lines
749 B
Plaintext
<li class="ur_question_item radio">
|
|
<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>
|
|
<div class="cl"></div>
|
|
<div class="ur_inputs">
|
|
<table class="ur_table" >
|
|
<tbody>
|
|
<% poll_question.poll_votes.where("user_id = #{User.current.id}").each do |answer|%>
|
|
<tr>
|
|
<td>
|
|
<%= answer.poll_answer.answer_text %>
|
|
</td>
|
|
</tr>
|
|
<% end%>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</li><!--单选题 end--> |