InvenTree/InvenTree/templates/hover_image.html
2021-10-28 19:57:17 +11:00

12 lines
438 B
HTML

{% load static %}
<div style='float: left;'>
{% if hover %}
<a class='hover-icon'>
{% endif %}
<img class='hover-img-thumb' {% if image %}src='{{ image.url }}'{% else %}src='{% static "img/blank_image.png" %}'{% endif %}>
{% if hover and image %}
<img class='hover-img-large' {% if image %}src='{{ image.url }}'{% else %}src='{% static "img/blank_image.png" %}'{% endif %}>
</a>
{% endif %}
</div>