45 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "seminar/soustredeni/base.html" %}
 | |
| 
 | |
| {% block content %} 
 | |
| 
 | |
|   <h1>{% block nadpis1 %}Soustředění{% endblock %}</h1>
 | |
| 
 | |
|   {# 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#}
 | |
|       {% 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>
 | |
|     {% endif %}
 | |
|   {% empty %}
 | |
|     Žádná soustředění zatím neproběhla!
 | |
|   {% endfor %}
 | |
| 
 | |
| {% endblock %}
 | |
| 
 | 
