brotherton-erpnext/erpnext/templates/generators/item/item_specifications.html
marination 25ffafae81 feat: Product Details Tabbed Section and Add to Wishlist in Item Full Page
- 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
2021-10-12 17:25:51 +05:30

18 lines
484 B
HTML

{% if website_specifications -%}
<div class="row mt-5 item-website-specification">
<div class="col-md-11">
{% if not show_tabs %}
<h2 class="product-title mb-5">Product Details</h2>
{% endif %}
<table class="table table-bordered table-hover">
{% for d in website_specifications -%}
<tr>
<td class="text-muted" style="width: 30%; font-weight: bold;">{{ d.label }}</td>
<td>{{ d.description }}</td>
</tr>
{%- endfor %}
</table>
</div>
</div>
{%- endif %}