{% extends "layout/landing_page.html" %} {% load i18n %} {% load static %} {% block landing_content %}
{{ event.name }}
{{ event.description }}
{% if event.sub_description %}
{{ event.sub_description }}
{% endif %} {% if event.registrations_enabled %}
TU SE REGISTRUJ ...
{% endif %}
{% for section in html_sections %}
{{ section.html|safe }}
{% endfor %}

// TITULY a KATEGORIE

Podle okruhu, který jste si zvolili, tak se vám dostane patřičného titulu, či spadnete do jedné z kategorií.


{% for category in event.categories.all %}

// {{ category.name }}

{{ category.description }}

{% if category.length %}

Dlzka: {{ category.length }} m

{% endif %} {% if category.climb %}

Stoupání: {{ category.climb }} m

{% endif %} {% if category.gpx %}

GPX

{% endif %}
{% if category.mapy_cz_url %} {% endif %}
{% empty %}
Zatím nebyly vytvořeny žádné kategorie.
{% endfor %}
{% if event.registrations_enabled %}

// REGISTRACE

{% include 'events/registration_form.html' with event=event %}
{% endif %}

// ME REGISTRACE

Tady si můžes zkontrolovat své registrace na závody.

Zadej email, který jsi použil při registraci a klikni na tlačítko "ODESLAT ZADOST". Na tvuj email ti přijde seznam tvých registrací.

{% include 'events/my_registrations_form.html' with event=event %}

// KONTAKT

Pokuď potřebujete poradit, nebo se zeptat, napište mi. Všichni mi říkají Ventil.

TELEFON na Ventila: +420 775 003 122

MAIL na Ventila: ventil@spoton.cz

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