2021-03-25 11:52:50 +05:30
|
|
|
<!-- Is reused to render within tabs as well as independently -->
|
|
|
|
{% if website_specifications %}
|
|
|
|
<div class="mt-5 item-website-specification">
|
2021-03-22 16:17:59 +05:30
|
|
|
<div class="col-md-11">
|
|
|
|
{% if not show_tabs %}
|
2021-03-25 11:52:50 +05:30
|
|
|
<h3 class="product-title mb-5 mt-8">Product Details</h3>
|
2021-03-22 16:17:59 +05:30
|
|
|
{% endif %}
|
|
|
|
<table class="table table-bordered table-hover">
|
|
|
|
{% for d in website_specifications -%}
|
2019-03-19 11:48:32 +05:30
|
|
|
<tr>
|
2021-03-22 16:17:59 +05:30
|
|
|
<td class="text-muted" style="width: 30%; font-weight: bold;">{{ d.label }}</td>
|
2019-03-19 11:48:32 +05:30
|
|
|
<td>{{ d.description }}</td>
|
|
|
|
</tr>
|
|
|
|
{%- endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-03-25 11:52:50 +05:30
|
|
|
{% endif %}
|