{% extends "layout/landing_page.html" %} {% load i18n %} {% load event_tags %} {% block landing_content %}

Tvoje registrace na {{ event.name }}

{% for registration in registrations %}

{{ registration.first_name }} {{ registration.last_name }}

( {{ registration.nick_name }} )

Kategorie: {{ registration.category }}

Stav registrace: {% if registration.is_finished %}Dokoncena{% else %} Neuhrazena{% endif %}

{% if not registration.is_paid %}

Pro uhrazení startovného použij následující údaje:

Číslo účtu: {{ registration.event.bank_account_number }}

Suma: {{ registration.event.fee }} Kč

Poznámka: {{ registration.variable_symbol }}

Nebo můžeš použít QR kód:
QR Code {% else %}
{% endif %}
{% empty %}

Nemáš žádné registrace na tomto závodu.

{% endfor %}

{% include 'layout/landing_footer.html' %} {% endblock %} {% block js %} {% endblock %}