pokud org nemá fotku, zobrazí se defaultní

This commit is contained in:
Kateřina Čížková 2019-12-13 17:09:35 +01:00
parent b094631414
commit d647599230
2 changed files with 2 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -38,6 +38,8 @@
{% if org.osoba.foto %}
{# <img src="{{org.osoba.foto.url}}" height="{{org.osoba.foto.height}}"> #}
<a href="{{org.osoba.foto.url}}"><img src="{{org.osoba.foto_male.url}}" height="{{org.osoba.foto_male.height}}" alt="{{org.osoba.jmeno}} {{org.osoba.prijmeni}}"></a>
{% else %} {# pokud osoba nemá fotku, zobrazuje se defaultní obrázek#}
{% load static %} <img src="{% static 'images/no-photo.png' %}" height=200px alt="{{org.osoba.jmeno}} {{org.osoba.prijmeni}}">
{% endif %}
</div>
</td>