Skip to content
Snippets Groups Projects
Select Git revision
  • 9d1ff7191c5583998687a3094c8fc791ae0df6d0
  • master default protected
  • feat/redesign
  • feat/dockerfile
  • feat/nastenka
  • feat/crossroads
6 results

navbar.html

Blame
  • combine_decryptions.html 610 B
    {% extends TEMPLATE_BASE %}
    
    {% block title %}Compute Tally — {{election.name}}{% endblock %}
    {% block content %}
      <h2 class="title">{{election.name}} &mdash; Compute Tally <span style="font-size:0.7em;">[<a href="{% url "helios.views.one_election_view" election.uuid %}">cancel</a>]</span></h2>
    
      <p>
        You are about to compute the tally for this election. You only will then see the results.
      </p>
    
      <form method="POST" action="">
        <input type="hidden" name="csrf_token" value="{{csrf_token}}" />
        <input type="submit" class="button" value="compute the tally!" />
      </form>
    
    {% endblock %}