{% extends 'base.jinja' %} {% block headline %}

Donar

{% endblock %} {% block content %}
{% csrf_token %}
{% if id %}

Ergebnisse für: {{ id }}

{% if rooms %}

Ergebnisse Räume:

{% for room in rooms %} {% endfor %} {% endif %}
{% if lectures %}

Ergebnisse Lehrveranstaltungen:

{% for lecture in lectures %}
{{ lecture.name }}
{% for term in lecture.term.all() %} Start: {{ term.starttime.strftime("%H:%M") }} {% for room in term.room.all() %}

Raum: {{ room.short }}

{% endfor %} {% endfor %}
{% endfor %} {% endif %}
{% endif %}
{% endblock %}