Zobrazení koordinátora dle grafického návrhu
parent
6af2af38a2
commit
87f9d18970
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
@ -0,0 +1,19 @@
|
|||||||
|
<div class="coordinator">
|
||||||
|
<h3>Koordinátor</h3>
|
||||||
|
<div>
|
||||||
|
{% if image %}
|
||||||
|
<img src="/coordinators/{{ image }}" alt="Obrázek koordinátora">
|
||||||
|
{% else %}
|
||||||
|
<img src="/coordinators/placeholder.jpg" alt="Obrázek koordinátora">
|
||||||
|
{% endif %}
|
||||||
|
{% if email or phone %}
|
||||||
|
<div>
|
||||||
|
<strong>{{ name }}</strong>
|
||||||
|
<ul>
|
||||||
|
{% if email %}<li><a href="mailto:{{ email }}">{{ email }}</a></li>{% endif %}
|
||||||
|
{% if phone %}<li>{{ phone }}</li>{% endif %}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
Reference in New Issue