104 lines
		
	
	
	
		
			4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
	
		
			4 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 %}
 | |
| 
 | |
|         {% if soustredeni.kontaktnicek_pdf or soustredeni.kontaktnicek_vcf %}
 | |
|             {% for i in soustredeni.ucastnici.all %}
 | |
|               {% if i.osoba.user == user %}
 | |
|                 <div class="mam-resitel-only">
 | |
|                 {% if soustredeni.kontaktnicek_pdf %} <li><a href="../{{soustredeni.pk}}/kontaktnicek_pdf">kontaktnicek pdf</a></li>{% endif %}
 | |
|                 {% if soustredeni.kontaktnicek_vcf %} <li><a href="../{{soustredeni.pk}}/kontaktnicek_vcf">kontaktnicek vcf</a></li>{% endif %}
 | |
|                 </div>
 | |
|               {% 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>
 | |
|           <a href={%  url 'soustredeni_abstrakty' soustredeni.pk %}>Vygenerovat účastníky a vedoucí do abstraktů</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>
 | |
|         <ul>
 | |
|           {% if soustredeni.kontaktnicek_pdf %} <li><a href="../{{soustredeni.pk}}/kontaktnicek_pdf">kontaktnicek pdf</a></li>{% else %} <li>pdf kontaktníček není</li> {% endif %}
 | |
|           {% if soustredeni.kontaktnicek_vcf %} <li><a href="../{{soustredeni.pk}}/kontaktnicek_vcf">kontaktnicek vcf</a></li>{% else %} <li>vcf kontaktníček není</li> {% endif %}
 | |
|         </ul>
 | |
|       </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 %}
 | |
| 
 | 
