{% extends 'administration/base.html.twig' %} {% block title %}Rabattcodes verwalten{% endblock %} {% block body %}
Verwalten Sie alle verfügbaren Rabattcodes
| Code | Name | Typ | Wert | Gültig von | Gültig bis | Verwendungen | Status | Aktionen |
|---|---|---|---|---|---|---|---|---|
{{ discount.code }}
|
{{ discount.name }}
{% if discount.description %}
{{ discount.description }}
{% endif %}
|
{{ discount.type|title }} | {{ discount.formattedValue }} | {{ discount.validFrom|date('d.m.Y') }} | {% if discount.isExpired() %} {{ discount.validUntil|date('d.m.Y') }} {% else %} {{ discount.validUntil|date('d.m.Y') }} {% endif %} | {% if discount.maxUses %} {{ discount.usedCount }} / {{ discount.maxUses }} {% else %} {{ discount.usedCount }} / ∞ {% endif %} | {% if discount.isValid() %} Aktiv {% elseif discount.isExpired() %} Abgelaufen {% elseif discount.isExhausted() %} Aufgebraucht {% else %} Inaktiv {% endif %} |
|
| Keine Rabattcodes gefunden | ||||||||