Hide vote results if status is 'searching for candidates'. Hide blocked candidates title if empty.

This commit is contained in:
Emanuel Schuetze 2012-11-17 23:44:41 +01:00
parent b10cf331ab
commit 0cf4191934
2 changed files with 6 additions and 11 deletions

View File

@ -89,6 +89,7 @@
{% endif %} {% endif %}
{% endif %} {% endif %}
{% if assignment.elected %}
<h3>{% trans "Elected Candidates" %}</h3> <h3>{% trans "Elected Candidates" %}</h3>
<ul> <ul>
{% for person in assignment.elected %} {% for person in assignment.elected %}
@ -104,8 +105,9 @@
<li>{% trans "No elected candidates available." %}</li> <li>{% trans "No elected candidates available." %}</li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %}
{% if perms.assignment.can_manage_assignments %} {% if perms.assignment.can_manage_assignments and blocked_candidates %}
<h3>{% trans "Blocked Candidates" %}</h3> <h3>{% trans "Blocked Candidates" %}</h3>
<ul> <ul>
{% for person in blocked_candidates %} {% for person in blocked_candidates %}
@ -118,6 +120,7 @@
</ul> </ul>
{% endif %} {% endif %}
{% if assignment.status != "sea" %}
<h3>{% trans "Election results" %}</h3> <h3>{% trans "Election results" %}</h3>
{% if polls.exists %} {% if polls.exists %}
@ -215,7 +218,6 @@
<td></td> <td></td>
{% endif %} {% endif %}
</tr> </tr>
<tr class="total"> <tr class="total">
<td><strong>{% trans 'Votes cast' %}</strong></td> <td><strong>{% trans 'Votes cast' %}</strong></td>
{% for poll in polls %} {% for poll in polls %}
@ -233,11 +235,8 @@
{% endif %} {% endif %}
</tr> </tr>
</table> </table>
{% else %} {% else %}
<i>{% trans "No results available." %}</i>
<i>{% trans "No ballots available." %}</i>
{% if assignment.candidates and perms.assignment.can_manage_assignment and assignment.status == "vot" %} {% if assignment.candidates and perms.assignment.can_manage_assignment and assignment.status == "vot" %}
<p><a href='{% url assignment_gen_poll assignment.id %}'> <p><a href='{% url assignment_gen_poll assignment.id %}'>
<span class="button"> <span class="button">
@ -245,9 +244,7 @@
</span> </span>
</a></p> </a></p>
{% endif %} {% endif %}
{% endif %} {% endif %}
{% endif %}
</div> </div>
{% endblock %} {% endblock %}

View File

@ -124,8 +124,6 @@
</table> </table>
{% elif some_polls_available %} {% elif some_polls_available %}
<i>{% trans "Vote results are not published yet." %}</i> <i>{% trans "Vote results are not published yet." %}</i>
{% elif assignment.candidates %}
<i>{% trans "No ballots available." %}</i>
{% endif %} {% endif %}
<br> <br>
{% endblock %} {% endblock %}