{% extends "admin/base.html" %} {% block title %}Kunde: {{ customer.display_name }}{% endblock %} {% block content %}
| {{ customer.email }} | |
| Telefon | {% if customer.display_phone %} {{ customer.display_phone }} {% else %} - {% endif %} |
| Adresse |
{% set addr = customer.display_address %}
{% if addr.street %}
{{ addr.street }} {{ addr.zip }} {{ addr.city }} {% else %} - {% endif %} |
| {# Sprint 13: Priority: view_labels > saved_field.label > wp_labels > key #} {{ view_labels.get(key) or saved_field.get('label') or wp_labels.get(key) or key }} | {{ value }} |
| Kunden-ID | #{{ customer.id }} |
| WP User-ID | {{ customer.wp_user_id or '-' }} |
| Registriert | {{ customer.created_at.strftime('%d.%m.%Y um %H:%M') if customer.created_at else '-' }} |
| Letzter Login | {% if customer.last_login_at %} {{ customer.last_login_at.strftime('%d.%m.%Y um %H:%M') }} {% else %} Noch nie eingeloggt {% endif %} |
| Aktualisiert | {{ customer.updated_at.strftime('%d.%m.%Y um %H:%M') if customer.updated_at else '-' }} |
Loescht das Kundenkonto und alle zugehoerigen Daten unwiderruflich.