81 lines
2.4 KiB
HTML
81 lines
2.4 KiB
HTML
{% extends "seminar/soustredeni/base.html" %}
|
|
|
|
{% block menu_soustredeni %}selected{% endblock %}
|
|
{% block submenu %}
|
|
{% with "probehlo" as selected %}
|
|
{% include "seminar/soustredeni/submenu.html" %}
|
|
{% endwith %}
|
|
{% endblock submenu %}
|
|
|
|
{# zmena fotky #}{% block header %}soustredeni{% endblock %}
|
|
|
|
{% block nadpis1a %}{% block nadpis1b %}
|
|
Soustředění
|
|
{% endblock %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<em>
|
|
Na galeriích ze soustředění a dalších informacích ještě pracujeme.
|
|
</em><br><br>
|
|
|
|
{# Projdi vsechna soustredeni #}
|
|
{% for soustredeni in object_list %}
|
|
{# Kdyz je verejne -> zobraz #}
|
|
{% if soustredeni.verejne_db or user.is_authenticated %}
|
|
{% if not soustredeni.verejne_db and user.is_authenticated %}
|
|
Groups of user: {{user.groups.all}} <br>
|
|
<!-- TODO pri prihlasovani ucastniku dodelat prava
|
|
jen na group org ve view -->
|
|
Toto soustředění není veřejné, vidíte ho jen proto,
|
|
že jste přihlášení. <br>
|
|
{% endif %}
|
|
{# misto soustredeni TODO upravit#}
|
|
<h2>
|
|
{{soustredeni.get_typ_display}}
|
|
{{soustredeni.misto}}
|
|
</h2>
|
|
<ul>
|
|
<li>
|
|
{{soustredeni.datum_zacatku}} – {{soustredeni.datum_konce}}
|
|
</li>
|
|
{# Zobrazeni odkazu na galerie #}
|
|
{% if soustredeni.galerie_set.all %}
|
|
{% for galerie in soustredeni.galerie_set.all %}
|
|
{% if galerie.zobrazit == 0 or user.is_staff %}
|
|
<li>
|
|
<a href="../{{soustredeni.pk}}/fotogalerie/{{galerie.pk}}">FOTOGALERIE: {{galerie}}</a>
|
|
{# TODO kdyz je titulni obrazek, tak asi i titulni obrazek #}
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if user.is_staff %}
|
|
<li>
|
|
<a href="../{{soustredeni.pk}}/fotogalerie/0/new/"> VYTVOŘIT NOVOU FOTOGALERII </a>
|
|
</li>
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
{# popis soustredeni #}
|
|
{% if soustredeni.text %}
|
|
{% autoescape off %}{{soustredeni.text}}{% endautoescape %}
|
|
{% endif %}
|
|
{% if user.is_authenticated %}
|
|
{# Účastníci #}
|
|
<h3>Soustředění se zúčastnili tito účastníci:</h3>
|
|
<ul>
|
|
{% for i in soustredeni.soustredeni_ucastnici_set.all %}
|
|
<li>{{i.resitel}}
|
|
{% empty %}
|
|
<li>Nic!
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% empty %}
|
|
Žádná soustředění zatím neproběhla!
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
|