2fec068aff
- Added Optional Recommended Items - Item Full Page minor UI Refresh - Floating wishlist button in item full page - Reviews section UI Refresh
21 lines
515 B
HTML
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 %}
|