forked from ScoDoc/ScoDoc
35 lines
936 B
HTML
35 lines
936 B
HTML
|
{# -*- mode: jinja-html -*- #}
|
||
|
{# Pied des bulletins HTML #}
|
||
|
|
||
|
<p>Situation actuelle:
|
||
|
{% if inscription_courante %}
|
||
|
<a class="stdlink" href="{{url_for(
|
||
|
"notes.formsemestre_status",
|
||
|
scodoc_dept=g.scodoc_dept,
|
||
|
formsemestre_id=inscription_courante.formsemestre_id)
|
||
|
}}">{{inscription_str}}</a>
|
||
|
{% else %}
|
||
|
{{inscription_str}}
|
||
|
{% endif %}
|
||
|
</p>
|
||
|
|
||
|
{% if formsemestre.modalite == "EXT" %}
|
||
|
<p><a href="{{
|
||
|
url_for('notes.formsemestre_ext_edit_ue_validations',
|
||
|
scodoc_dept=g.scodoc_dept,
|
||
|
formsemestre_id=formsemestre.id,
|
||
|
etudid=etud.id)}}"
|
||
|
class="stdlink">
|
||
|
Éditer les validations d'UE dans ce semestre extérieur
|
||
|
</a></p>
|
||
|
{% endif %}
|
||
|
|
||
|
{# Place du diagramme radar #}
|
||
|
<form id="params">
|
||
|
<input type="hidden" name="etudid" id="etudid" value="{{etud.id}}"/>
|
||
|
<input type="hidden" name="formsemestre_id" id="formsemestre_id" value="{{formsemestre.id}}"/>
|
||
|
</form>
|
||
|
<div id="radar_bulletin"></div>
|
||
|
|
||
|
|