blob: 05181c089a5b1260bff1b5b7b2f97cc203db686d [file] [log] [blame]
Anand Doshida858cc2015-02-24 17:50:44 +05301{% macro product_image_square(website_image, css_class="") %}
2<div class="product-image product-image-square {% if not website_image -%} missing-image {%- endif %} {{ css_class }}"
Anand Doshi886def02015-07-22 14:43:17 +05303 {% if website_image -%} style="background-image: url('{{ frappe.utils.quoted(website_image) | abs_url }}');" {%- endif %}>
Anand Doshida858cc2015-02-24 17:50:44 +05304</div>
5{% endmacro %}
6
7{% macro product_image(website_image, css_class="") %}
Rushabh Mehta156ce602015-09-11 18:49:59 +05308 <div class="product-image {% if not website_image -%} missing-image {%- endif %} {{ css_class }}">
9 {% if website_image -%}
10 <img src="{{ frappe.utils.quoted(website_image) | abs_url }}" class="img-responsive">
Rushabh Mehta156ce602015-09-11 18:49:59 +053011 {%- endif %}
12 </div>
13{% endmacro %}
14