socialforge/app/views/poll/_choice_show.html.erb

26 lines
917 B
Plaintext
Raw Normal View History

2015-01-16 10:51:08 +08:00
2015-01-14 16:36:30 +08:00
<div class="ur_table_result">
<table border="0" cellspacing="0" cellpadding="0" >
<tbody>
<tr class="table_bluebg">
<td class="td327">选项 </td>
<td class="td42">小计 </td>
<td class="td287">比例 </td>
</tr>
<% poll_question.poll_answers.each do |poll_answer| %>
<tr>
<td class="td327"><%= poll_answer.answer_text %> </td>
2015-01-16 10:51:08 +08:00
<td class="td42"><% poll_answer.poll_votes.count %> </td>
2015-01-14 16:36:30 +08:00
<td class="td287"><div class="Bar"><span style="width:75%;"></span></div> 75% </td>
</tr>
<% end %>
<tr class="table_bluebg">
<td class="td327">本题有效填写人次 </td>
2015-01-16 10:51:08 +08:00
<td class="td42"><%= poll_question.poll_votes.count %></td>
2015-01-14 16:36:30 +08:00
<td class="td287">&nbsp; </td>
</tr>
</tbody>
</table>
</div>