{% extends 'workflows/base_shell.html' %} {% load static i18n %} {% block title %}{% trans "Welcome E-Mails" %}{% endblock %} {% block extra_css %} {% endblock %} {% block shell_body %} {% include 'workflows/includes/app_header.html' with header_show_home=1 header_inside_shell=1 %}

{% trans "Geplante Welcome E-Mails" %}

{% trans "Welcome-Mails konfigurieren und geplante Mails steuern (sofort senden, pausieren, fortsetzen, abbrechen)." %}

{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}
{% csrf_token %}
{% trans "Verfügbare Keywords:" %} {% for key in welcome_keywords %} {{ key }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% csrf_token %} 0 {% trans "ausgewählt" %}
{% for row in rows %} {% empty %} {% endfor %}
{% trans "Auswahl" %} ID {% trans "Mitarbeitende Person" %} {% trans "Empfänger" %} {% trans "Geplant für" %} {% trans "Status" %} {% trans "Gesendet am" %} {% trans "Aktion" %}
{{ row.id }} {{ row.onboarding_request.full_name }} {{ row.recipient_email }} {{ row.send_at|date:"Y-m-d H:i" }} {% if row.status == 'scheduled' %} {% trans "Geplant" %} {% elif row.status == 'paused' %} {% trans "Pausiert" %} {% elif row.status == 'cancelled' %} {% trans "Abgebrochen" %} {% elif row.status == 'sent' %} {% trans "Gesendet" %} {% else %} {% trans "Fehlgeschlagen" %} {% endif %} {% if row.sent_at %}{{ row.sent_at|date:"Y-m-d H:i" }}{% else %}-{% endif %}
{% if row.status != 'sent' and row.status != 'cancelled' %}
{% csrf_token %}
{% endif %} {% if row.status == 'scheduled' %}
{% csrf_token %}
{% elif row.status == 'paused' %}
{% csrf_token %}
{% endif %} {% if row.status != 'sent' and row.status != 'cancelled' %}
{% csrf_token %}
{% endif %}
{% trans "Keine geplanten Welcome E-Mails vorhanden." %}
{% endblock %} {% block extra_scripts %} {% endblock %}