forked from ScoDoc/ScoDoc
18 lines
404 B
Plaintext
18 lines
404 B
Plaintext
|
{% extends "sco_page.j2" %}
|
||
|
{% import 'wtf.j2' as wtf %}
|
||
|
|
||
|
{% block app_content %}
|
||
|
<h2 class="formsemestre">Semestres créés</h2>
|
||
|
|
||
|
<div class="scobox">
|
||
|
<div class="scobox-title">Les semestres suivants ont été créés:</div>
|
||
|
<ul>
|
||
|
{% for formsemestre in formsemestres %}
|
||
|
<li>{{ formsemestre.html_link_status() | safe }}
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|