{% extends "base.html" %} {% block title %}Profil - MYP Platform{% endblock %} {% block content %}

Mein Profil

Verwalten Sie Ihre Kontoinformationen und Einstellungen

Persönliche Informationen

{{ (current_user.first_name[0] if current_user.first_name else current_user.email[0]) | upper }} Profilbild

{{ current_user.first_name + ' ' + current_user.last_name if current_user.first_name and current_user.last_name else current_user.email.split('@')[0] }}

{{ current_user.email }}

{{ 'Administrator' if current_user.is_admin else 'Benutzer' }} • {{ current_user.department or 'Keine Abteilung' }}

Passwort ändern

Mindestens 8 Zeichen

Statistiken

Gesamte Aufträge -
Abgeschlossene Aufträge -
Aktive Aufträge -
Fehlgeschlagene Aufträge -

Kontoinformationen

Mitglied seit:
{{ current_user.created_at | format_datetime('%d.%m.%Y') if current_user.created_at else 'Unbekannt' }}
Letzte Anmeldung:
{{ current_user.last_login | format_datetime if current_user.last_login else 'Nie' }}
Konto-Status:
Aktiv

Schnellaktionen

{% endblock %} {% block scripts %} {% endblock %}