{% extends "base.html" %} {# zmena fotky #}{% block header %}soustredeni{% endblock %} {% block nadpis1a %} Soustředění {% endblock %} {% block content %} {# Projdi vsechna soustredeni #} {% for soustredeni in object_list %} {# Kdyz je verejne -> zobraz #} {% if soustredeni.verejne_db or user.je_org %} {% if not soustredeni.verejne_db and user.je_org %}
{% endif %} {# misto soustredeni TODO upravit#}

{{soustredeni.get_typ_display}} {{soustredeni.misto}}

{% if user.je_org %}
Vytvořit novou fotogalerii
Vygenerovat obálky pro účastníky
Seznam účastníků - HTML tabulka pro tisk, CSV, E-maily
Stvrzenky
{% endif %} {# popis soustredeni #} {% if soustredeni.text %} {% autoescape off %}{{soustredeni.text}}{% endautoescape %} {% endif %} {% if user.je_org %}
{# Účastníci #}

Soustředění se zúčastnili tito účastníci:

{% for i in soustredeni.soustredeni_ucastnici_set.all %} {{i.resitel}}{% if forloop.last %}.{% else %},{% endif %} {% empty %} Nic! {% endfor %}

Soustředění se účastnili tito organizátoři:

{% for i in soustredeni.soustredeni_organizatori_set.all %} {{i.organizator}}{% if forloop.last %}.{% else %},{% endif %} {% empty %} Nic! {% endfor %}

{% endif %} {% if not soustredeni.verejne_db and user.je_org %}
{# class="mam-org-only" #} {% endif %} {% endif %} {% empty %} Žádná soustředění zatím neproběhla! {% endfor %} {% endblock %}