{% extends 'base.html.j2' %} {# NateMan – Nachschreibtermin-Manager templates/klausuren/mine.html.j2 Copyright © 2020 Niklas Elsbrock This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . #} {% block title %}Meine Klausuren{% endblock %} {% block header %}Meine Klausuren{% endblock %} {# klausuren_anstehend #} {# klausuren_vergangen #} {% block content %}

vergangen:

{% if klausuren_vergangen|length == 0 %}

keine

{% else %} {% for kv in klausuren_vergangen %} {% if kv.edited %} {% else %} {% endif %} {% endfor %}
Datum Stufe Kurs Zeitraum bearbeitet
{{ macros.date(kv.date) }} {{ kv.stufe.name }} {{ kv.kursname }} {{ macros.zeitraum(kv) }} Std.janein
{% endif %}

anstehend:

{% if klausuren_anstehend|length == 0 %}

keine

{% else %} {% for ka in klausuren_anstehend %} {% endfor %}
Datum Stufe Kurs Zeitraum
{{ macros.date(ka.date) }} {{ ka.stufe.name }} {{ ka.kursname }} {{ macros.zeitraum(ka) }} Std.
{% endif %} {% endblock %}