2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-01 11:10:54 +00:00
Files
InvenTree/InvenTree/templates/hover_image.html
Matthias Mair 74726f0fda fix endline
2022-05-20 13:35:07 +02:00

13 lines
439 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>