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

Admin Dashboard

{{ status_counts.Angefragt }}
Neue Anfragen
{{ status_counts.Bestaetigt }}
Bestätigt
{{ total_posts }}
Blog-Beiträge

Buchungsanfragen verwalten

Kalender-Tage sperren

{% if blocked_days %} {% for blocked in blocked_days %}

{{ blocked.date }} {% if blocked.reason %} - {{ blocked.reason }} {% endif %}

{% endfor %} {% else %}

Aktuell sind keine Tage gesperrt.

{% endif %}
{% if appointments %} {% for appointment in appointments %}
{{ appointment.display_name }} - {{ appointment.subject }}

Datum: {{ appointment.date }} um {{ appointment.time }}

Buchungsart: {{ appointment.meeting_label or ('Vor Ort' if appointment.meeting_type == 'vor_ort' else 'Digital') }}

{% if appointment.location_name %}

Ort: {{ appointment.location_name }}

{% endif %} {% if appointment.location_maps_url %}

Maps: Link öffnen

{% endif %}

Angefragt: {{ appointment.created_at[:10] }}

{% if appointment.note %}

Notiz: {{ appointment.note }}

{% endif %} {% if appointment.response %}

Antwort: {{ appointment.response }}

{% endif %} {{ appointment.status }}
{% if appointment.status == 'Angefragt' %}
{% endif %}
{% endfor %} {% else %}

Keine Buchungsanfragen vorhanden.

{% endif %}
Blog verwalten
{% endblock %}