2021-03-22 10:47:59 +00:00
|
|
|
{% 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 -%}
|
2019-03-19 06:18:32 +00:00
|
|
|
<tr>
|
2021-03-22 10:47:59 +00:00
|
|
|
<td class="text-muted" style="width: 30%; font-weight: bold;">{{ d.label }}</td>
|
2019-03-19 06:18:32 +00:00
|
|
|
<td>{{ d.description }}</td>
|
|
|
|
</tr>
|
|
|
|
{%- endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-08-19 08:11:10 +00:00
|
|
|
{%- endif %}
|