{% 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

Terminanfragen verwalten

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

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

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 Terminanfragen vorhanden.

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