{% 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 %}
| Vytvořena | Vyprší | Vytvořil/a | 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 '—' }} | {# ── Email delivery status ── #}
{% 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 %} |
{# ── Link clicked + copy URL ── #}
{% 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 %} |
{# ── Registration status ── #}
{% if inv.is_used %} Dokončena {% elif inv.is_cancelled %} Zrušena {% elif inv.is_expired %} Expirovaná {% else %} Čeká {% endif %} | {# ── Actions ── #}{% 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. | |||||||