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

Your submissions

Overview

Listed below are the candidates that you have submitted and their status.
This gives you the possibility to update your submission based on the feedback you have received if you like.

{% if contributions %} {% for candidate in contributions %} {% endfor %}
Name | Picture | Status | Motif (if rejected) | Election status
{{ candidate.candidate_name }} img {{ candidate.candidate_file }} {% if candidate.approved == true %} Candidate approved {% elif candidate.denied == true %} Candidate denied {% else %} Candidate pending review {% endif %} {{ candidate.approved_motif }} {% if candidate.election.submission_open %} Update {% else %} Submission are closed {% endif %}
{% else %}

No denied contributions have been found for you.

{% endif %} {% endblock %}