{% extends "base.html" %} {% block title %}Termin anfragen{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

{{ month_name }} {{ year }}

{% for week in month_grid %} {% for day in week %} {% if day == 0 %} {% else %} {% set day_iso = "%04d-%02d-%02d"|format(year, month, day) %} {% set blocked_day = blocked_day_map.get(day_iso) %} {% endif %} {% endfor %} {% endfor %}

Meine Terminanfragen

{% if user_appointments %} {% for item in user_appointments %}
{{ item.date }} um {{ item.time }} - {{ item.subject }} {% if item.note %}

{{ item.note }}

{% endif %} {% if item.location_name %} {% endif %} {% if item.location_maps_url %} {% endif %} {% if item.response %}

Admin-Antwort: {{ item.response }}

{% endif %} {{ item.status }}
{% endfor %} {% else %}

Noch keine Anfragen vorhanden.

{% endif %}
{% endblock %}