80 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "seminar/cojemam/base.html" %}
 | |
| {% block nadpis1a %}{% block nadpis1b %}
 | |
|   {% if aktivni %}
 | |
|     Organizátoři
 | |
|   {% else %}
 | |
|     Vysloužilí organizátoři
 | |
|   {% endif %}
 | |
| {% endblock%}{% endblock%}
 | |
| 
 | |
| {# podbarveni menu a submenu #}
 | |
| {% block menu_uvod %}selected{% endblock %}
 | |
| {% block submenu %}
 | |
|   {% with "org" as selected %}
 | |
|   {% include "seminar/cojemam/submenu.html" %}
 | |
|   {% endwith %}
 | |
| {% endblock %}
 | |
| 
 | |
| {# zmena fotky #}{% block header %}cojemam{% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
| <div id='seznam_orgu'>
 | |
|   {% if not aktivni %}
 | |
|     <a href="/co-je-MaM/organizatori/">Aktivní organizátoři</a><br>
 | |
|     <br>
 | |
|   {% endif %}
 | |
|   {% for org in object_list %}
 | |
|     <h2>
 | |
|     {{org.user.first_name}}
 | |
|     {% if org.prezdivka %}
 | |
|       „{{org.prezdivka}}“
 | |
|     {% endif %}
 | |
|     {{org.user.last_name}}
 | |
|     </h2>
 | |
|     <table>
 | |
|     <tr>
 | |
|     <td>
 | |
|     <div class="foto_org">
 | |
|     {% if org.foto %}
 | |
|       {# <img src="{{org.foto.url}}" height="{{org.foto.height}}"> #}
 | |
|       <a href="{{org.foto.url}}"><img src="{{org.foto_male.url}}" height="{{org.foto_male.height}}" alt="{{org.user.first_name}} {{org.user.last_name}}"></a>
 | |
|     {% endif %}
 | |
|     </div>
 | |
|     </td>
 | |
|     <td>
 | |
|     <ul>
 | |
|           {% if aktivni %}
 | |
|             {% if org.organizuje_od_roku %}
 | |
|               <li>
 | |
|                 Organizuje od roku {{org.organizuje_od_roku}}
 | |
|             {% endif %}
 | |
|           {% else %}
 | |
|             <li>
 | |
|               Aktivní v letech {{org.organizuje_od_roku | default:"?" }}–{{org.organizuje_do_roku | default:"?" }}
 | |
|           {% endif %}
 | |
|       {% if org.studuje %}
 | |
|         <li>Studuje: {{org.studuje}}
 | |
|       {% endif %}
 | |
|       {% if org.user.email %}
 | |
|         <li>Pošta:
 | |
|         {# zobrazeni e-mailu (na jednom radku, aby nevznikaly mezery navic) #}
 | |
|         {% for znak in org.user.email %}{% if znak == '@' %} <zavináč> {% elif znak == '.' %} <tečka> {% else %}{{znak}}{% endif %}{% endfor %}
 | |
|       {% endif %}
 | |
|     </ul>
 | |
|     {# {{org.strucny_popis_organizatora}} #}
 | |
|     </td>
 | |
|     </tr>
 | |
|   </table>
 | |
|   <hr>
 | |
|   {% endfor %}
 | |
| 
 | |
|   {% if aktivni%}
 | |
|     <a href="organizovali/">Vysloužilí organizátoři</a>
 | |
|   {% else %}
 | |
|     <a href="/co-je-MaM/organizatori/">Aktivní organizátoři</a>
 | |
|   {% endif %}
 | |
| 
 | |
| </div>
 | |
| 
 | |
| {% endblock content %}
 | |
| 
 | 
