InvenTree/InvenTree/templates/hover_image.html

12 lines
438 B
HTML
Raw Normal View History

2019-06-01 11:13:51 +00:00
{% load static %}
2021-10-28 08:57:17 +00:00
<div style='float: left;'>
{% if hover %}
2019-06-01 11:13:51 +00:00
<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 %}>
2019-06-01 11:13:51 +00:00
</a>
{% endif %}
</div>