87 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| 
 | |
| {# zmena fotky #}{% block header %}soustredeni{% endblock %}
 | |
| 
 | |
| {% block nadpis1a %}
 | |
|   Soustředění
 | |
| {% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
|   {# Projdi vsechna soustredeni #}
 | |
|   {% for soustredeni in object_list %}
 | |
|     {# Kdyz je verejne -> zobraz #}
 | |
|     {% 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 %}
 | |
|       {# misto soustredeni TODO upravit#}
 | |
|       <h1>
 | |
| 	    {{soustredeni.get_typ_display}}
 | |
| 	    {{soustredeni.misto}}
 | |
|       </h1>
 | |
|       <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.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>
 | |
|             {% endif %}
 | |
|           {% endfor %}
 | |
|         {% endif %}
 | |
|       </ul>
 | |
|       {% 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>
 | |
| 		  Seznam účastníků - 
 | |
|           <a href="../{{soustredeni.pk}}/seznam_ucastniku">HTML tabulka pro tisk</a>,
 | |
|           <a href="../{{soustredeni.pk}}/export_ucastniku">CSV</a>,
 | |
|           <a href="../{{soustredeni.pk}}/maily_ucastniku">E-maily</a><br>
 | |
|           <a href="../{{soustredeni.pk}}/stvrzenky.pdf">Stvrzenky</a>
 | |
|         </div>
 | |
|       {% endif %}
 | |
| 
 | |
| 
 | |
|       {# popis soustredeni #}
 | |
|       {% if soustredeni.text %}
 | |
|         {% autoescape off %}{{soustredeni.text}}{% endautoescape %}
 | |
|       {% endif %}
 | |
|       {% if user.je_org %}
 | |
|       <div class="mam-org-only">
 | |
|         {# Účastníci #}
 | |
|         <h2>Soustředění se zúčastnili tito účastníci:</h2>
 | |
|         <p>
 | |
|         {% for i in soustredeni.ucastnici.all %}
 | |
|           {{i}}{% if forloop.last %}.{% else %},{% endif %}
 | |
|         {% empty %}
 | |
|           Nic!
 | |
|         {% endfor %}
 | |
|         </p>
 | |
|         <h2>Soustředění se účastnili tito organizátoři:</h2>
 | |
|         <p>
 | |
|         {% for i in soustredeni.organizatori.all %}
 | |
|           {{i}}{% if forloop.last %}.{% else %},{% endif %}
 | |
|         {% empty %}
 | |
|           Nic!
 | |
|         {% endfor %}
 | |
|         </p>
 | |
|       </div>
 | |
|       {% endif %}
 | |
| 
 | |
|       {% if not soustredeni.verejne_db and user.je_org %}
 | |
|         </div> {# class="mam-org-only" #}
 | |
|       {% endif %}
 | |
|     {% endif %}
 | |
|     {% empty %}
 | |
|       Žádná soustředění zatím neproběhla!
 | |
|   {% endfor %}
 | |
| 
 | |
| {% endblock %}
 | |
| 
 |