{% extends "email/base.html" %} {% macro spot_table(spots) %} {% for s in spots %} {% endfor %}
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 %}
{% endmacro %} {% block content %}

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 %}

{{ section.event_name }}

{{ section.datetime_range_local }}
{% for entry in section.rows %} {% if entry.type == "event_changed" %}
{% for label, old_val, new_val in entry.changes %} {% endfor %}
PolePředPo
{{ label }}{{ old_val }}{{ new_val }}
{% elif entry.type == "assignment_confirmed" %}

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" %}

Vyplňte prosím debriefing.

{% else %} {{ entry.legacy_html|safe }} {% endif %} {% endfor %}
{% if not loop.last %}
{% endif %} {% endfor %}

V případě dotazů kontaktujte prosím koordinátora.

{% endblock %}