2021-04-27 10:14:48 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}{{data["ac"]}}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% include "navigation.html" %}
|
|
|
|
|
|
|
|
<div class="content">
|
2021-04-27 18:43:14 +02:00
|
|
|
<h1>{{data["code"]}}</h1>
|
2021-04-27 10:14:48 +02:00
|
|
|
<p>{{data["titre"]}}</p>
|
2021-04-28 11:39:00 +02:00
|
|
|
<h1 class="title">Liste des SAÉs mobilisés</h1>
|
|
|
|
<ul>
|
|
|
|
{% for sae in data["sae"] %}
|
|
|
|
<li>{{sae["code"]}} - {{sae["titre"]}}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2021-04-27 10:14:48 +02:00
|
|
|
</div>
|
2021-04-28 11:39:00 +02:00
|
|
|
|
2021-04-27 10:14:48 +02:00
|
|
|
{% include "navigation.html" %}
|
|
|
|
|
|
|
|
{% endblock %}
|