{% extends "base.html" %} {% from 'macros/badges.html' import badge_secondary %} {% block title %}Smazat kvalifikaci — MedCover{% endblock %} {% block content %}
← Zpět

Smazat kvalifikaci

Chystáte se smazat kvalifikaci „{{ cred.name }}“. Tato akce je nevratná. Níže je uveden přehled všech dopadů.
{# ── Active spots — will be unlinked ─────────────────────────────────── #}
Aktivní pozice — kvalifikace bude odebrána ({{ active_spots | length }})
{% if active_spots %}
    {% for spot in active_spots %}
  • {{ spot.event.name }} {{ spot.event.status.value }} {% if spot.description %} — {{ spot.description }} {% endif %}
  • {% endfor %}
{% else %}

Žádné aktivní pozice.

{% endif %}
{# ── Fixed spots — kept as tombstone ──────────────────────────────────── #}
Dokončené/zrušené akce — historický záznam zachován ({{ fixed_spots | length }})
{% if fixed_spots %}
    {% for spot in fixed_spots %}
  • {{ spot.event.name }} {{ spot.event.status.value }} {% if spot.description %} — {{ spot.description }} {% endif %}
    {{ badge_secondary('zachováno', extra_classes='ms-2') }}
  • {% endfor %}
{% else %}

Žádné dokončené/zrušené akce.

{% endif %}
{# ── Users ────────────────────────────────────────────────────────────── #}
Uživatelé — kvalifikace bude odebrána ({{ affected_users | length }})
{% if affected_users %}
    {% for u in affected_users %}
  • {{ u.name }} ({{ u.email }})
  • {% endfor %}
{% else %}

Žádní uživatelé.

{% endif %}
{# ── Templates ────────────────────────────────────────────────────────── #}
Šablony akcí — kvalifikace bude odebrána ({{ affected_templates | length }})
{% if affected_templates %}
    {% for t in affected_templates %}
  • {{ t.name }}
  • {% endfor %}
{% else %}

Žádné šablony.

{% endif %}
Zrušit
{% endblock %}