Organizatori do tabulky.

This commit is contained in:
Jethro 2015-09-12 17:10:58 +02:00
parent 7ccf9143a1
commit eeed25cef8

View file

@ -19,7 +19,10 @@
{% if not aktivni %} {% if not aktivni %}
<a href="/co-je-MaM/organizatori/">Aktivní organizátoři</a> <a href="/co-je-MaM/organizatori/">Aktivní organizátoři</a>
{% endif %} {% endif %}
<table>
{% for org in object_list %} {% for org in object_list %}
<tr>
<td colspan="2">
<h2> <h2>
{{org.user.first_name}} {{org.user.first_name}}
{% if org.prezdivka %} {% if org.prezdivka %}
@ -27,12 +30,18 @@
{% endif %} {% endif %}
{{org.user.last_name}} {{org.user.last_name}}
</h2> </h2>
</td>
</tr>
<tr>
<td>
{% if org.foto %} {% if org.foto %}
<div class="foto_org"> <div class="foto_org">
{# <img src="{{org.foto.url}}" height="{{org.foto.height}}"> #} {# <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.first_name}} {{org.last_name}}"></a> <a href="{{org.foto.url}}"><img src="{{org.foto_male.url}}" height="{{org.foto_male.height}}" alt="{{org.first_name}} {{org.last_name}}"></a>
</div> </div>
{% endif %} {% endif %}
</td>
<td>
<ul> <ul>
<li> <li>
{% if aktivni %} {% if aktivni %}
@ -52,7 +61,10 @@
</ul> </ul>
{{org.strucny_popis_organizatora}} {{org.strucny_popis_organizatora}}
<hr> <hr>
</td>
</tr>
{% endfor %} {% endfor %}
</table>
{% if aktivni%} {% if aktivni%}
<a href="organizovali/">Vysloužilí organizátoři</a> <a href="organizovali/">Vysloužilí organizátoři</a>