13 lines
491 B
HTML
13 lines
491 B
HTML
{% load static %}
|
|
|
|
<div style='float: left;'>
|
|
{% if hover %}
|
|
<a class='hover-icon'>
|
|
{% endif %}
|
|
<img class='hover-img-thumb' alt='{% trans "Image" %}' {% if image %}src='{{ image.url }}'{% else %}src='{% static "img/blank_image.png" %}'{% endif %}>
|
|
{% if hover and image %}
|
|
<img class='hover-img-large' alt='{% trans "Image" %}' {% if image %}src='{{ image.url }}'{% else %}src='{% static "img/blank_image.png" %}'{% endif %}>
|
|
</a>
|
|
{% endif %}
|
|
</div>
|