{% 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 "Welcome-Mails konfigurieren und geplante Mails steuern (sofort senden, pausieren, fortsetzen, abbrechen)." %}
{% include 'workflows/includes/messages.html' %}| {% 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' %}
{% endif %}
{% if row.status == 'scheduled' %}
{% elif row.status == 'paused' %}
{% endif %}
{% if row.status != 'sent' and row.status != 'cancelled' %}
{% endif %}
|
|
| {% trans "Keine geplanten Welcome E-Mails vorhanden." %} | |||||||