|
|
@ -21,13 +21,10 @@ |
|
|
|
{# 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> |
|
|
@ -42,7 +39,7 @@ |
|
|
|
{% if soustredeni.galerie_set.all %} |
|
|
|
{% for galerie in soustredeni.galerie_set.all %} |
|
|
|
{% if galerie.zobrazit == 0 or user.is_staff %} |
|
|
|
<li> |
|
|
|
<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> |
|
|
@ -73,6 +70,9 @@ |
|
|
|
{% 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! |
|
|
|