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

Review election: {{ election.election_name }} - {{ election.election_year }}

Overview

Here below are presented all the candidates of the election {{ election.election_name }} from {{ election.election_year }}, regardless of wether they are valid candidates or not.

You may select one or more candidates using the checkbox in the first column of the table below and approve or deny them all using the buttons at the bottom.

(Re-)generate cache

{% if candidates %}
{% for candidate in candidates %} {% endfor %}
Name Image Author Original artwork License Submitter Approved Motif
{{ loop.index }} {{ candidate.candidate_name }} img {{ candidate.candidate_file }} {{ candidate.candidate_author }} {% if candidate.candidate_original_url %} {{ candidate.candidate_original_url }} {% else %} - {% endif %} {{ candidate.candidate_license }} {{ candidate.candidate_submitter }} {% if candidate.approved %} Candidate approved {% else %} {% if candidate.approved_motif %} Candidate denied {% else %} Candidate denied {% endif %} {% endif %}
{{ form.csrf_token }}
{% else %}

No candidates found for this election.

{% endif %} {% endblock %}