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