{% extends "master.html" %} {% block title %} {{ super() }} {% endblock %} {%block tag %}admin{% endblock %} {% block content %}

Nuancier Admin -- Version {{ version }}

Admin interface

From this page you can manage elections, create new ones, and start and stop an existing election.

Create a new election {% for election in elections %} {% if is_admin %} {% endif %} {% endfor %}
Identifier Name Year Submissions Votes Published Max number of votes possible
{{ election.id }} {{ election.election_name }} {{ election.election_year }} {% if election.submission_open %} Submission open {% else %} Submission closed {% endif %} {{ election.submission_date_start }} {% if election.election_open %} Election open {% else %} Election closed {% endif %} {{ election.election_date_start }} {% if election.election_public %} Election's results published {% else %} Election's results closed {% endif %} {{ election.election_date_end }} {{ election.election_n_choice }} Edit (Re-)generate cache Review Stats
{% endblock %}