Make size of count column in results consistent

This commit is contained in:
RunasSudo 2017-12-04 20:32:00 +10:30
parent 02be536ed8
commit 4a0efef128
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A
2 changed files with 4 additions and 4 deletions

View File

@ -19,8 +19,8 @@
<table class="ui celled table">
{% for answer, num in election.results[loop.index0].count() %}
<tr>
<td>{{ question.pretty_answer(answer) }}</td>
<td>{{ num }}</td>
<td class="fourteen wide">{{ question.pretty_answer(answer) }}</td>
<td class="two wide">{{ num }}</td>
</tr>
{% endfor %}
</table>

View File

@ -19,8 +19,8 @@
<table class="ui celled table">
{% for answer, num in election.results[loop.index0].count() %}
<tr>
<td>{{ question.pretty_answer(answer) }}</td>
<td>{{ num }}</td>
<td class="fourteen wide">{{ question.pretty_answer(answer) }}</td>
<td class="two wide">{{ num }}</td>
</tr>
{% endfor %}
</table>