autosco/app/templates/index.j2

18 lines
230 B
Plaintext
Raw Normal View History

{# Page accueil #}
{% extends 'base.j2' %}
{% block content %}
<h1>AutoSco - Accueil</h1>
<div>
{% for sem in sems %}
<div class="sem">
{{sem.date_debut}} : {{sem.titre}}
</div>
{% endfor %}
</div>
{% endblock %}