2021-03-25 06:22:50 +00:00
|
|
|
<!-- Is reused to render within tabs as well as independently -->
|
|
|
|
{% if website_specifications %}
|
2021-09-01 09:27:50 +00:00
|
|
|
<div class="{{ 'mt-2' if not show_tabs else 'mt-5'}} item-website-specification">
|
2021-03-22 10:47:59 +00:00
|
|
|
<div class="col-md-11">
|
|
|
|
{% if not show_tabs %}
|
2021-09-01 09:27:50 +00:00
|
|
|
<div class="product-title mb-5 mt-4">
|
2021-07-13 18:16:24 +00:00
|
|
|
Product Details
|
|
|
|
</div>
|
2021-03-22 10:47:59 +00:00
|
|
|
{% endif %}
|
2021-07-13 18:16:24 +00:00
|
|
|
<table class="table">
|
2021-03-22 10:47:59 +00:00
|
|
|
{% for d in website_specifications -%}
|
2019-03-19 06:18:32 +00:00
|
|
|
<tr>
|
2021-07-13 18:16:24 +00:00
|
|
|
<td class="spec-label">{{ d.label }}</td>
|
|
|
|
<td class="spec-content">{{ d.description }}</td>
|
2019-03-19 06:18:32 +00:00
|
|
|
</tr>
|
|
|
|
{%- endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-03-25 06:22:50 +00:00
|
|
|
{% endif %}
|