|
|
@ -17,8 +17,8 @@ |
|
|
|
{# Projdi vsechna soustredeni #} |
|
|
|
{% for soustredeni in object_list %} |
|
|
|
{# Kdyz je verejne -> zobraz #} |
|
|
|
{% if soustredeni.verejne_db or user.is_staff %} |
|
|
|
{% if not soustredeni.verejne_db and user.is_staff %} |
|
|
|
{% if soustredeni.verejne_db or user.je_org %} |
|
|
|
{% if not soustredeni.verejne_db and user.je_org %} |
|
|
|
<div class="mam-org-only"> |
|
|
|
<!--Groups of user: {{user.groups.all}} <br>--> |
|
|
|
{% endif %} |
|
|
@ -34,8 +34,8 @@ |
|
|
|
{# 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 %}> |
|
|
|
{% if galerie.zobrazit == 0 or user.je_org %} |
|
|
|
<li {% if galerie.zobrazit > 0 and user.je_org %}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> |
|
|
@ -43,7 +43,7 @@ |
|
|
|
{% endfor %} |
|
|
|
{% endif %} |
|
|
|
</ul> |
|
|
|
{% if user.is_staff %} |
|
|
|
{% if user.je_org %} |
|
|
|
<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><br> |
|
|
@ -60,7 +60,7 @@ |
|
|
|
{% if soustredeni.text %} |
|
|
|
{% autoescape off %}{{soustredeni.text}}{% endautoescape %} |
|
|
|
{% endif %} |
|
|
|
{% if user.is_staff %} |
|
|
|
{% if user.je_org %} |
|
|
|
<div class="mam-org-only"> |
|
|
|
{# Účastníci #} |
|
|
|
<h2>Soustředění se zúčastnili tito účastníci:</h2> |
|
|
@ -82,7 +82,7 @@ |
|
|
|
</div> |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{% if not soustredeni.verejne_db and user.is_staff %} |
|
|
|
{% if not soustredeni.verejne_db and user.je_org %} |
|
|
|
</div> {# class="mam-org-only" #} |
|
|
|
{% endif %} |
|
|
|
{% endif %} |
|
|
|