{% extends 'administration/base.html.twig' %} {% block title %}Lizenzpläne verwalten{% endblock %} {% block body %} {# Breadcrumb hinzufügen #} {# Bestehender Seiteninhalt #}

Lizenzpläne verwalten

{# Pläne als Cards anzeigen #}
{% for plan in plans %}
{{ plan.label }}
{{ plan.name }}

{{ plan.description }}

  • Preis: {{ plan.getFormattedPriceForCycle('monthly') }} / Monat
  • Jährlich: {{ plan.getFormattedPriceForCycle('yearly') }} / Jahr
  • Lifetime: {{ plan.getFormattedPriceForCycle('lifetime') }}
  • Max. Domains: {{ plan.maxDomains ?? '∞' }}
  • Max. Nutzer: {{ plan.maxUsers ?? '∞' }}
{{ plan.active ? 'Aktiv' : 'Inaktiv' }} {% if plan.isPopular %}Beliebt{% endif %}
{% else %}
Noch keine Lizenzpläne vorhanden.
{% endfor %}
{% endblock %}