CP_EHRENAMT/app/templates/index.html
2026-06-25 18:58:44 +02:00

21 lines
866 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends shell_base %}
{% block title %}Start · CheckPoint Ehrenamt{% endblock %}
{% block content %}
<h1>Hallo {{ user.anzeigename }}</h1>
{% if user.ist_admin %}
{# Admin-Shell: die Sidebar trägt die Navigation, hier keine Kachel-Buttons. #}
<p class="cp-muted">Willkommen im Verwaltungsbereich. Wähle links eine Aufgabe
Planung, Dienste, Freigaben, Team oder Chat-Verwaltung. Nutzer anlegen findest
du unter „Team".</p>
{% else %}
<p class="cp-muted">Schön, dass du da bist. Deine Einsätze findest du unter
„Termine", Team und Dokumente unter „Team".</p>
<form method="post" action="{{ url_for('auth.logout') }}">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
<button type="submit" class="cp-btn cp-btn--ghost">Abmelden</button>
</form>
{% endif %}
{% endblock %}