Make size of count column in results consistent
This commit is contained in:
parent
02be536ed8
commit
4a0efef128
@ -19,8 +19,8 @@
|
|||||||
<table class="ui celled table">
|
<table class="ui celled table">
|
||||||
{% for answer, num in election.results[loop.index0].count() %}
|
{% for answer, num in election.results[loop.index0].count() %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ question.pretty_answer(answer) }}</td>
|
<td class="fourteen wide">{{ question.pretty_answer(answer) }}</td>
|
||||||
<td>{{ num }}</td>
|
<td class="two wide">{{ num }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
@ -19,8 +19,8 @@
|
|||||||
<table class="ui celled table">
|
<table class="ui celled table">
|
||||||
{% for answer, num in election.results[loop.index0].count() %}
|
{% for answer, num in election.results[loop.index0].count() %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ question.pretty_answer(answer) }}</td>
|
<td class="fourteen wide">{{ question.pretty_answer(answer) }}</td>
|
||||||
<td>{{ num }}</td>
|
<td class="two wide">{{ num }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
Loading…
Reference in New Issue
Block a user