|
|
@ -21,47 +21,44 @@ |
|
|
|
{# 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> |
|
|
|
{% if soustredeni.verejne_db or user.is_staff %} |
|
|
|
{% if not soustredeni.verejne_db and user.is_staff %} |
|
|
|
<div class="mam-org-only"> |
|
|
|
<!--Groups of user: {{user.groups.all}} <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 %} |
|
|
|
<h2> |
|
|
|
{{soustredeni.get_typ_display}} |
|
|
|
{{soustredeni.misto}} |
|
|
|
</h2> |
|
|
|
<ul> |
|
|
|
<li> |
|
|
|
<a href="../{{soustredeni.pk}}/fotogalerie/{{galerie.pk}}">Fotogalerie</a> |
|
|
|
{# TODO kdyz je titulni obrazek, tak asi i titulni obrazek #} |
|
|
|
{{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 {% if galerie.zobrazit > 0 and user.is_staff %}class="mam-org-only"{% endif %}> |
|
|
|
<a href="../{{soustredeni.pk}}/fotogalerie/{{galerie.pk}}">Fotogalerie</a> |
|
|
|
{# TODO kdyz je titulni obrazek, tak asi i titulni obrazek #} |
|
|
|
</li> |
|
|
|
{% endif %} |
|
|
|
{% endfor %} |
|
|
|
{% endif %} |
|
|
|
</ul> |
|
|
|
{% if user.is_staff %} |
|
|
|
<div class="mam-org-only"> |
|
|
|
<a href="../{{soustredeni.pk}}/fotogalerie/0/new/">Vytvořit novou fotogalerii</a><br> |
|
|
|
<a href="../{{soustredeni.pk}}/obalky.pdf">Vygenerovat obálky pro účastníky</a> |
|
|
|
</div> |
|
|
|
{% endif %} |
|
|
|
{% endfor %} |
|
|
|
{% endif %} |
|
|
|
</ul> |
|
|
|
{% if user.is_staff %} |
|
|
|
<div class="mam-org-only"> |
|
|
|
<a href="../{{soustredeni.pk}}/fotogalerie/0/new/">Vytvořit novou fotogalerii</a><br> |
|
|
|
<a href="../{{soustredeni.pk}}/obalky.pdf">Vygenerovat obálky pro účastníky</a> |
|
|
|
</div> |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
|
|
|
|
{# popis soustredeni #} |
|
|
|
{% if soustredeni.text %} |
|
|
|
{% autoescape off %}{{soustredeni.text}}{% endautoescape %} |
|
|
|
{% endif %} |
|
|
|
{# 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> |
|
|
@ -73,9 +70,12 @@ |
|
|
|
{% endfor %} |
|
|
|
</ul> |
|
|
|
{% endif %} |
|
|
|
{% if not soustredeni.verejne_db and user.is_staff %} |
|
|
|
</div> {# class="mam-org-only" #} |
|
|
|
{% endif %} |
|
|
|
{% endif %} |
|
|
|
{% empty %} |
|
|
|
Žádná soustředění zatím neproběhla! |
|
|
|
{% empty %} |
|
|
|
Žádná soustředění zatím neproběhla! |
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
{% endblock %} |
|
|
|