forked from ScoDoc/ScoDoc
41 lines
1.0 KiB
Django/Jinja
41 lines
1.0 KiB
Django/Jinja
{% extends 'base.j2' %}
|
|
|
|
{% block app_content %}
|
|
|
|
{% if not validations %}
|
|
<p>Aucune validation de jury enregistrée pour <b>{{etud.nom_disp()}}</b> sur
|
|
<b>l'année {{annee}}</b>
|
|
de la formation <em>{{ formation.html() }}</em>
|
|
</p>
|
|
|
|
<div style="margin-top: 16px;">
|
|
<a class="stdlink" href="{{ cancel_url }}">continuer</a>
|
|
</div>
|
|
{% else %}
|
|
|
|
<h2>Effacer les décisions de jury pour l'année {{annee}} de {{etud.nom_disp()}} ?</h2>
|
|
|
|
<p class="help">Affectera toutes les décisions concernant l'année {{annee}} de la formation,
|
|
quelle que soit leur origine.</p>
|
|
|
|
<p>Les décisions concernées sont:</p>
|
|
<ul>
|
|
{% for validation in validations %}
|
|
<li>{{ validation.html() | safe}}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<div style="margin-top: 16px;">
|
|
<form method="post">
|
|
<input type="submit" value="Effacer ces décisions" />
|
|
{% if cancel_url %}
|
|
<input type="button" value="Annuler" style="margin-left: 16px;"
|
|
onClick="document.location='{{ cancel_url }}';" />
|
|
{% endif %}
|
|
</form>
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endblock %} |