{% extends 'management/election_manage.html' %} {% load django_tables2 i18n static %} {% block container %}
{% include "management/includes/election_manage_tabs.html" with election=object tab="scrutinize" only %} {% if not scrutinizing and not finished %}
{% trans "In this area you can start the vote counting" %}
{% trans "Number of votes in ballot box" %}:
{{total_votes}}

{% csrf_token %}
{% elif scrutinizing and not finished %}
{% trans "Vote counting in progress..." %}
{% elif finished %}
{% trans "In this area you can consult the vote counting result" %}
{% if object.weight_votes %}
{% trans "Total votes with wheight" %}:
{{total_votes}}
{% trans "Total votes without wheight" %}:
{{total_votes}}
{% else %}
{% trans "Total votes in ballot box" %}:
{{total_votes}}
{% endif %}
{% render_table results_table %}

{% trans "Aditional info" %}

{% render_table results_extra_table %}
{% endif %}
{% endblock container %} {% block extrajs %} {% endblock extrajs %}