{% extends "email/base.html" %} {% macro spot_table(spots) %}
| Popis | Požadovaná kvalifikace | Stav |
|---|---|---|
| {{ s.description }}{% if s.is_optional %} (volitelná){% endif %} | {% if s.qualifications %}{{ s.qualifications|join(", ") }}{% else %}Bez požadavků{% endif %} | {% if s.is_filled %}Obsazeno{% else %}Volné{% endif %} |
Dobrý den, {{ user_name }},
{% if event_sections|length == 1 %}níže je souhrn oznámení k akci:
{% else %}níže je souhrn oznámení ke {{ event_sections|length }} akcím:
{% endif %} {% for section in event_sections %}| Pole | Před | Po |
|---|---|---|
| {{ label }} | {{ old_val }} | {{ new_val }} |
Byli jste přihlášeni na pozici {{ entry.spot_description }}.
{% elif entry.type == "assignment_released" %}Byli jste odhlášeni z pozice {{ entry.spot_description }}.
{% elif entry.type == "event_published" %}Akce byla zveřejněna.
{% if entry.show_spots and entry.spots %}{{ spot_table(entry.spots) }}{% endif %} {% elif entry.type == "assignments_opened" %}Přihlášky byly otevřeny.
{% if entry.show_spots and entry.spots %}{{ spot_table(entry.spots) }}{% endif %} {% elif entry.type == "event_cancelled" %}Akce byla zrušena.
{% elif entry.type == "event_archived" %}Akce byla archivována.
{% elif entry.type == "event_unarchived" %}Akce byla obnovena z archivu.
{% elif entry.type == "unfilled_reminder" %} {% set n = entry.unfilled_count %} {% if n > 0 %}Akce má {{ n }} {%- if n == 1 %} neobsazenou pozici {%- elif n < 5 %} neobsazené pozice {%- else %} neobsazených pozic {%- endif -%}.
{% endif %} {% if entry.show_spots %} {% if entry.spots %}{{ spot_table(entry.spots) }} {% else %}Všechna povinná místa jsou nyní obsazená.
{% endif %} {% endif %} {% elif entry.type == "debriefing_invitation" %} {% else %} {{ entry.legacy_html|safe }} {% endif %} {% endfor %}V případě dotazů kontaktujte prosím koordinátora.
{% endblock %}