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.
12 lines
343 B
12 lines
343 B
{% load static %}
|
|
|
|
{% 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 %}
|
|
<img src="{% static 'client/img/no-logo.png' %}" alt="" />
|
|
{% endif %} |