]> git.siccegge.de Git - fachschaftentool.git/blob - templates/index.html
fachschaftentool
[fachschaftentool.git] / templates / index.html
1 {% extends "base.html" %}
2 {% block content %}
3 <h2>KIF 41,5 Fachschaftentool</h2>
4 <p>
5 <a href="{{ url_for('add') }}">Eintragen</a>
6 </p>
7
8 <ul>
9 {% for fachschaft in fachschaften %}
10 <li><a href="{{ url_for('show', id=fachschaft.rowid) }}">{{fachschaft.langname}}</a></li>
11 {% endfor %}
12 </ul>
13 {% endblock %}