brotherton-erpnext/erpnext/templates/generators/item/item_specifications.html
marination 2fec068aff feat: Recommended Items and Item full page refresh
- Added Optional Recommended Items
- Item Full Page minor UI Refresh
- Floating wishlist button in item full page
- Reviews section UI Refresh
2021-11-16 17:02:43 +05:30

21 lines
515 B
HTML

<!-- Is reused to render within tabs as well as independently -->
{% if website_specifications %}
<div class="mt-5 item-website-specification">
<div class="col-md-11">
{% if not show_tabs %}
<div class="product-title mb-5 mt-8">
Product Details
</div>
{% endif %}
<table class="table">
{% for d in website_specifications -%}
<tr>
<td class="spec-label">{{ d.label }}</td>
<td class="spec-content">{{ d.description }}</td>
</tr>
{%- endfor %}
</table>
</div>
</div>
{% endif %}