brotherton-erpnext/erpnext/templates/includes/order/order_macros.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.5 KiB
HTML
Raw Normal View History

2015-09-16 13:22:52 +00:00
{% from "erpnext/templates/includes/macros.html" import product_image_square %}
{% macro item_name_and_description(d) %}
2016-05-02 06:13:44 +00:00
<div class="row item_name_and_description">
2015-09-16 13:22:52 +00:00
<div class="col-xs-4 col-sm-2 order-image-col">
<div class="order-image">
{{ product_image_square(d.thumbnail or d.image) }}
2015-09-16 13:22:52 +00:00
</div>
</div>
<div class="col-xs-8 col-sm-10">
{{ d.item_code }}
<div class="text-muted small item-description">
{{ html2text(d.description) | truncate(140) }}
</div>
2015-09-16 13:22:52 +00:00
</div>
</div>
2016-06-22 10:16:38 +00:00
{% endmacro %}
2016-06-22 10:16:38 +00:00
{% macro item_name_and_description_cart(d) %}
2016-05-02 06:13:44 +00:00
<div class="row item_name_dropdown">
<div class="col-xs-4 col-sm-4 order-image-col">
<div class="order-image">
{{ product_image_square(d.thumbnail or d.image) }}
2016-05-12 09:52:59 +00:00
</div>
2016-05-02 06:13:44 +00:00
</div>
<div class="col-xs-8 col-sm-8">
{{ d.item_name|truncate(25) }}
2016-06-22 10:16:38 +00:00
<div class="input-group number-spinner">
<span class="input-group-btn">
<button class="btn btn-light cart-btn" data-dir="dwn">
2016-06-22 10:16:38 +00:00
</button>
</span>
<input class="form-control text-right cart-qty"
value = "{{ d.get_formatted('qty') }}"
data-item-code="{{ d.item_code }}">
2016-06-22 10:16:38 +00:00
<span class="input-group-btn">
<button class="btn btn-light cart-btn" data-dir="up">
2016-06-22 10:16:38 +00:00
+</button>
</span>
</div>
2016-05-02 06:13:44 +00:00
</div>
</div>
2016-06-22 10:21:42 +00:00
{% endmacro %}