Skip to content
Snippets Groups Projects
Select Git revision
  • bd8aeb93adf4cd3628f2966da38b67650748d670
  • master default protected
  • feat/new-image-formats
  • clickable-select-chevron
  • 2.20.0
  • 2.19.0
  • 2.18.0
  • 2.17.0
  • 2.16.1
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.1
  • 2.11.0
  • 2.10.0
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.1
  • 2.7.0
  • 2.6.0
  • 2.5.2
  • 2.5.1
24 results

home-hero.mustache

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 %}