{% extends 'admin_base.html.twig' %} {% block title %}E-Mail-Templates - Admin{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block content %}

{% if showTrash %} Papierkorb und Wiederherstellung gelöschter E-Mail-Templates {% else %} Verwalten Sie alle E-Mail-Templates für das System {% endif %}

{% if showTrash %}E-Mail-Template Papierkorb{% else %}E-Mail-Templates{% endif %}

{% if not showTrash %} {% include 'admin/email_templates/_system_fallbacks.html.twig' with { fallbackEmails: fallbackEmails|default([])|filter(e => e.system == 'swim') } %} {% endif %}
{{ templates|length }}
{% if showTrash %}Gelöscht{% else %}Templates{% endif %}
{% if showTrash %} {{ templates|filter(t => t.deletedBy)|length }} {% else %} {{ templates|filter(t => t.isActive)|length }} {% endif %}
{% if showTrash %}Mit Benutzer{% else %}Aktiv{% endif %}
{% if showTrash %} {{ templates|filter(t => t.deletedAt)|length }} {% else %} {{ templates|filter(t => t.type == 'booking')|length }} {% endif %}
{% if showTrash %}Mit Löschdatum{% else %}Buchungen{% endif %}
{% if showTrash %} {{ templates|filter(t => t.deletedBy is null)|length }} {% else %} {{ templates|filter(t => t.type == 'reminder')|length }} {% endif %}
{% if showTrash %}Ohne Benutzer{% else %}Erinnerungen{% endif %}
{% for template in templates %}
{{ template.name }}
{% if showTrash %} {% else %} {% endif %}

Typ: {{ template.type|title }}

Status: {% if template.isActive %} Aktiv {% else %} Inaktiv {% endif %}

{% if showTrash %}Gelöscht:{% else %}Erstellt:{% endif %} {{ (showTrash ? template.deletedAt : template.createdAt)|date('d.m.Y H:i') }}

{% if showTrash %}

Gelöscht von: {{ template.deletedBy ? template.deletedBy.email : 'Unbekannt' }}

{% endif %}
{% if template.subject %}
Betreff:

{{ template.subject }}

{% endif %} {% if template.availabilities|length > 0 %}
Zugeordnete Kurse ({{ template.availabilities|length }}):
{% if template.availabilities|length > 3 %} {% endif %}
{% for availability in template.availabilities %}
{{ availability.name|slice(0, 40) }}{% if availability.name|length > 40 %}...{% endif %}
{% if availability.location %} {{ availability.location.name }} {% endif %}
{% endfor %}
{% else %}
Keine Kurse zugeordnet
Dieses Template ist noch keinem Kurs zugeordnet.
{% endif %}
{{ template.type|title }} {% if template.isActive %} Aktiv {% else %} Inaktiv {% endif %} {% if showTrash %} Gelöscht {% endif %} {% if template.subject %} Betreff {% endif %} {% if template.content %} Inhalt {% endif %}
{% else %}
{% if showTrash %}Papierkorb ist leer{% else %}Keine Templates gefunden{% endif %}

{% if showTrash %} Es befinden sich aktuell keine gelöschten E-Mail-Templates im Papierkorb. {% else %} Es sind noch keine E-Mail-Templates angelegt. {% endif %}

{% if not showTrash %} {% endif %}
{% endfor %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}