2023-06-18 09:37:13 +02:00
|
|
|
{% extends 'base.j2' %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
|
|
|
|
{% if not validations %}
|
2023-06-19 22:32:04 +02:00
|
|
|
<p>Aucune validation de jury enregistrée pour <b>{{etud.html_link_fiche()|safe}}</b>
|
|
|
|
sur <b>l'année {{annee}}</b>
|
2023-06-18 09:37:13 +02:00
|
|
|
de la formation <em>{{ formation.html() }}</em>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<div style="margin-top: 16px;">
|
|
|
|
<a class="stdlink" href="{{ cancel_url }}">continuer</a>
|
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
|
2023-06-19 22:32:04 +02:00
|
|
|
<h2>Effacer les décisions de jury pour l'année {{annee}} de {{etud.html_link_fiche()|safe}} ?</h2>
|
2023-06-18 09:37:13 +02:00
|
|
|
|
|
|
|
<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>
|
2023-06-30 17:26:41 +02:00
|
|
|
|
2023-07-02 16:02:09 +02:00
|
|
|
{% endif %}
|
|
|
|
|
2023-06-30 17:26:41 +02:00
|
|
|
<div class="sco_box">
|
|
|
|
<div class="sco_box_title">Autres actions:</div>
|
|
|
|
<ul>
|
|
|
|
<li><a class="stdlink" href="{{
|
|
|
|
url_for('notes.jury_delete_manual',
|
|
|
|
scodoc_dept=g.scodoc_dept,
|
|
|
|
etudid=etud.id
|
|
|
|
)
|
|
|
|
}}">effacer les décisions une à une</a>
|
|
|
|
</li>
|
|
|
|
{% if formsemestre_origine is not none %}
|
|
|
|
<li><a class="stdlink" href="{{
|
|
|
|
url_for('notes.formsemestre_jury_but_erase',
|
|
|
|
scodoc_dept=g.scodoc_dept, formsemestre_id=formsemestre_origine.id,
|
|
|
|
etudid=etud.id, only_one_sem=1)
|
|
|
|
}}">
|
|
|
|
effacer seulement les décisions émises par le semestre
|
|
|
|
{{formsemestre_origine.titre_formation(with_sem_idx=1)|safe}}
|
|
|
|
(efface aussi la décision annuelle)
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2023-06-18 09:37:13 +02:00
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|