{% extends "base.html" %} {% from 'macros/help.html' import help_icon %} {% from 'macros/badges.html' import badge_secondary, badge_warning %} {% block title %}Pozvánky — MedCover{% endblock %} {% block content %}

Pozvánky k registraci

← Uživatelé
Nová pozvánka
Výchozí předmět je z poslední odeslané pozvánky.
Napište celý text e-mailu včetně pozdravu a podpisu. Na konec bude automaticky připojen pouze registrační odkaz. Výchozí text je z poslední odeslané pozvánky.
{% for inv in invites %} {# ── Email delivery status ── #} {# ── Link clicked + copy URL ── #} {# ── Registration status ── #} {# ── Actions ── #} {% else %} {% endfor %}
E-mail Vytvořena Vyprší Vytvořil/a E-mail Odkaz Registrace
{{ inv.email }} {{ inv.created_at | localdt }} {{ inv.expires_at | localdt if inv.expires_at else '—' }} {{ inv.created_by.name if inv.created_by else '—' }} {% if inv.outbox_email is none %} {{ badge_secondary('Nezařazeno') }} {% elif inv.outbox_email.status == 'sent' %} Odesláno {% elif inv.outbox_email.status == 'failed' %} Chyba {% if inv.outbox_email.last_error %}
{{ inv.outbox_email.last_error | truncate(80) }} {% endif %} {% else %} {{ badge_warning('Ve frontě') }} {% endif %}
{% if not inv.is_cancelled and not inv.is_used %} {% set reg_url = url_for('auth.register', token=inv.token, _external=True) %} {% if inv.link_clicked_at %}
Otevřen {% endif %} {% elif inv.link_clicked_at %} Otevřen {% else %} {% endif %}
{% if inv.is_used %} Dokončena {% elif inv.is_cancelled %} Zrušena {% elif inv.is_expired %} Expirovaná {% else %} Čeká {% endif %} {% if not inv.is_used and not inv.is_cancelled and (inv.outbox_email is none or inv.outbox_email.status == 'failed') %}
{% endif %} {% if not inv.is_used and not inv.is_cancelled %}
{% endif %}
Žádné pozvánky.
{% endblock %} {% block extra_scripts %} {% endblock %}