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
18 lines
484 B
HTML
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 %}
|