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

9 lines
356 B
HTML
Raw Normal View History

2015-02-24 12:20:44 +00:00
{% from "erpnext/templates/includes/macros.html" import product_image_square %}
<a class="product-link" href="{{ (route or page_name)|abs_url }}">
2015-02-24 12:20:44 +00:00
<div class="col-sm-2 col-xs-4 product-image-wrapper">
{{ product_image_square(thumbnail or website_image) }}
2015-02-26 14:57:41 +00:00
<div class="text-ellipsis inline-block small product-text">{{ item_name }}</div>
</div>
2015-02-23 16:44:12 +00:00
</a>