25ffafae81
- Add to Wishlist button next to add to cart - Beautified Product Specifications table section - Product Specifications can be optionally in a tabbed section with custom tabs added - Removed hard coded gray bg to allow custom theme overwrites - Fixed resizing issues in Item Full Page view - Cleaned up inline styles and ported to scss
29 lines
888 B
HTML
29 lines
888 B
HTML
{% set width_class = "expand" if not slides else "" %}
|
|
<div class="col-md-7 product-details {{ width_class }}">
|
|
<!-- title -->
|
|
<h1 class="product-title" itemprop="name">
|
|
{{ item_name }}
|
|
</h1>
|
|
<p class="product-code">
|
|
<span>{{ _("Item Code") }}:</span>
|
|
<span itemprop="productID">{{ doc.item_code }}</span>
|
|
</p>
|
|
{% if has_variants %}
|
|
<!-- configure template -->
|
|
{% include "templates/generators/item/item_configure.html" %}
|
|
{% else %}
|
|
<!-- add variant to cart -->
|
|
{% include "templates/generators/item/item_add_to_cart.html" %}
|
|
{% endif %}
|
|
<!-- description -->
|
|
<div class="product-description" itemprop="description">
|
|
{% if frappe.utils.strip_html(doc.web_long_description or '') %}
|
|
{{ doc.web_long_description | safe }}
|
|
{% elif frappe.utils.strip_html(doc.description or '') %}
|
|
{{ doc.description | safe }}
|
|
{% else %}
|
|
{{ _("No description given") }}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|