forked from DGNum/gestioCOF
45 lines
1.7 KiB
HTML
45 lines
1.7 KiB
HTML
{% extends "base_title_petitscours.html" %}
|
|
|
|
{% block realcontent %}
|
|
<h3>Traitement de la demande de petits cours {{ demande.id }}</h3>
|
|
{% include "details_demande_petit_cours_infos.html" %}
|
|
<hr />
|
|
{% if errors %}
|
|
<div class="error">
|
|
Attention:
|
|
<ul>{% for error in errors %}<li>{{ error }}</li>{% endfor %}</ul>
|
|
</div>
|
|
{% endif %}
|
|
{% if unsatisfied %}
|
|
<div class="error">
|
|
Attention: Impossible de trouver des propositions pour les matières suivantes:
|
|
<ul>
|
|
{% for matiere in unsatisfied %}<li>{{ matiere }}</li>{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
{% if proposals %}
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
Propositions:
|
|
<ul>
|
|
{% for proposeduser, matieres in proposed_for %}
|
|
<li>{{ proposeduser }} pour {% for matiere in matieres %}{% if forloop.counter0 > 0 %}, {% endif %}{{ matiere }}{% endfor %}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<h4>Mails pour les membres proposés :</h4>
|
|
{% for proposeduser, mail in proposed_mails %}
|
|
<h5>Pour {{ proposeduser }}:</h5>
|
|
<pre>{{ mail }}</pre>
|
|
{% endfor %}
|
|
<h4>Mail pour l'auteur de la demande :</h4>
|
|
<pre style="margin-top: 15px;">{{ mainmail|safe }}</pre>
|
|
<input type="hidden" name="attribdata" value="{{ attribdata }}" />
|
|
{% if redo %}<input type="hidden" name="redo" value="1" />{% endif %}
|
|
<input type="submit" value="Valider le {% if redo %}re{% endif %}traitement de la demande" />
|
|
</form>
|
|
{% else %}
|
|
<h3>Impossible de trouver des propositions pour cette demande</h3>
|
|
<div class="error" style="font-size: 1.6em; margin-top: 10px;">Traitement manuel obligatoire !</div>
|
|
{% endif %}
|
|
{% endblock %}
|