{% 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
| 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') }} |
{% if license.updatedAt %}
| Zuletzt aktualisiert: |
{{ license.updatedAt|date('d.m.Y H:i') }} |
{% endif %}
Kunden Informationen
| Name: |
{{ license.customer.name }} |
| E-Mail: |
{{ license.customer.email }} |
{% if license.customer.company %}
| Firma: |
{{ license.customer.company }} |
{% endif %}
{% if license.customer.phone %}
| Telefon: |
{{ license.customer.phone }} |
{% endif %}
Aktionen
{% if license.status == 'active' %}
{% endif %}
{% endblock %}