blob: 0967e97138d8db8cd61b97aaab14e4af74733c1f [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 Doshic5301612015-07-13 14:24:56 +05303 {% if website_image -%} style="background-image: url('{{ frappe.utils.quoted(website_image) }}');" {%- endif %}>
Anand Doshida858cc2015-02-24 17:50:44 +05304 {% if not website_image -%}<i class="centered octicon octicon-device-camera"></i>{%- endif %}
5</div>
6{% endmacro %}
7
8{% macro product_image(website_image, css_class="") %}
9<div class="product-image {% if not website_image -%} missing-image {%- endif %} {{ css_class }}">
10 {% if website_image -%}
Anand Doshic5301612015-07-13 14:24:56 +053011 <img src="{{ frappe.utils.quoted(website_image) }}" class="img-responsive">
Anand Doshida858cc2015-02-24 17:50:44 +053012 {%- else -%}
13 <i class="centered octicon octicon-device-camera"></i>
14 {%- endif %}
15</div>
16{% endmacro %}