You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
746 B

{% load static %}
{% load thumbnail %}
{% if obj.get_logo %}
{# delete after changing all logos #}
{% if obj.get_logo.url %}
<img src="{{ obj.get_logo.url }}" alt="" />
{% else %}
<img src="{{ obj.get_logo.file_path.url }}" alt="" />
{% endif %}
{% else %}
{% if obj.logo %}
{% if customSize %}
{% thumbnail obj.logo customSize as im %}
<img src="{{ im.url }}" {% if im.height > im.width %}class="portrait"{% endif %}/>
{% endthumbnail %}
{% else %}
{% thumbnail obj.logo "100x100" as im %}
<img src="{{ im.url }}"/>
{% endthumbnail %}
{% endif %}
{% else %}
<img src="{% static 'client/img/no-logo.png' %}" class="no-logo" alt="" />
{% endif %}
{% endif %}