{% extends '@administration/base.html.twig' %} {% block title %}Lizenz Details{% endblock %} {% block body %}
Lizenz Informationen
Lizenzschlüssel: {{ license.licenseKey }}
Status: {% if license.status == 'active' %} Aktiv {% elseif license.status == 'inactive' %} Inaktiv {% elseif license.status == 'expired' %} Abgelaufen {% elseif license.status == 'suspended' %} Gesperrt {% endif %}
Domain: {{ license.domain }}
Lizenzplan: {{ license.licensePlan.label }}
Abrechnungszyklus: {% if license.billingCycle == 'monthly' %} Monatlich {% elseif license.billingCycle == 'yearly' %} Jährlich {% elseif license.billingCycle == 'lifetime' %} Lebenslang {% endif %}
Automatische Verlängerung: {% if license.autoRenewal %} Aktiviert {% else %} Deaktiviert {% endif %}
Gültigkeitszeitraum
{% if license.updatedAt %} {% endif %}
Gültig von: {{ license.validFrom|date('d.m.Y H:i') }}
Gültig bis: {{ license.validUntil|date('d.m.Y H:i') }} {% if license.isExpired() %} Abgelaufen {% elseif license.isExpiringSoon(30) %} Läuft bald ab {% endif %}
Erstellt am: {{ license.createdAt|date('d.m.Y H:i') }}
Zuletzt aktualisiert: {{ license.updatedAt|date('d.m.Y H:i') }}
Kunden Informationen
{% if license.customer.company %} {% endif %} {% if license.customer.phone %} {% endif %}
Name: {{ license.customer.name }}
E-Mail: {{ license.customer.email }}
Firma: {{ license.customer.company }}
Telefon: {{ license.customer.phone }}
Aktionen
{% if license.status == 'active' %} {% endif %}
{% endblock %}