mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
12 lines
457 B
HTML
12 lines
457 B
HTML
{% load static %}
|
|
|
|
<div class='media-left' 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> |