Bc. Petr Pecha
10 years ago
4 changed files with 54 additions and 6 deletions
@ -0,0 +1,41 @@ |
|||||
|
{% extends "seminar/soustredeni/base.html" %} |
||||
|
|
||||
|
{% block content %} |
||||
|
|
||||
|
<h1> Soustředění </h1> |
||||
|
|
||||
|
{# Projdi vsechna soustredeni #} |
||||
|
{% for soustredeni in object_list %} |
||||
|
{# Kdyz je verejne -> zobraz #} |
||||
|
{% if soustredeni.verejne_db %} |
||||
|
{# misto a cas soustredeni TODO upravit#} |
||||
|
{% if soustredeni.misto %} |
||||
|
<h2> |
||||
|
Soustředění v {{soustredeni.misto}} |
||||
|
od {{soustredeni.datum_zacatku}} do {{soustredeni.datum_konce}} |
||||
|
při {{soustredeni.rocnik.rocnik}}. ročníku M&M |
||||
|
</h2> |
||||
|
{% endif %} |
||||
|
{# popis soustredeni #} |
||||
|
{% if soustredeni.text %} |
||||
|
{% autoescape off %}{{soustredeni.text}}{% endautoescape %} |
||||
|
{% endif %} |
||||
|
{# Úč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> |
||||
|
{# Kdyz neni verejne, tak TODO zobraz jen pro prihlasene orgy #} |
||||
|
{% else %} |
||||
|
{# TODO if org je prihlaseny, predelat na (verejne OR jsem_org) #} |
||||
|
{% endif %} |
||||
|
{% empty %} |
||||
|
Žádná soustředění zatím neproběhla! |
||||
|
{% endfor %} |
||||
|
|
||||
|
{% endblock %} |
||||
|
|
Loading…
Reference in new issue