brotherton-erpnext/erpnext/templates/includes/product_in_grid.html

15 lines
511 B
HTML
Raw Normal View History

<div class="col-sm-3">
<div style="height: 120px; overflow: hidden;">
<a href="{{ route or page_name }}">
{%- if website_image -%}
<img class="product-image" style="width: 80%; margin: auto;" src="{{ website_image }}">
{%- else -%}
{% include 'templates/includes/product_missing_image.html' %}
{%- endif -%}
</a>
</div>
<div style="height: 100px; overflow: hidden; font-size: 80%;">
2014-04-21 16:40:15 +00:00
<div style="margin-bottom: 2px;"><a href="{{ route or page_name }}">{{ item_name }}</a></div>
</div>
2014-04-21 16:40:15 +00:00
</div>