5f8b358fd4
- Refactored Homepage with customisable Hero Section - New Homepage Section to add content on Homepage as cards or using Custom HTML - Products page at "/all-products" with customisable filters - Item Configure dialog to find an Item Variant filtered by attribute values - Contact Us dialog on Item page - Customisable Item page content using the Website Content field
16 lines
438 B
HTML
16 lines
438 B
HTML
{% if doc.website_specifications -%}
|
|
<div class="row item-website-specification mt-5">
|
|
<div class="col-md-12">
|
|
<h6 class="text-uppercase text-muted">{{ _("Specifications") }}</h6>
|
|
|
|
<table class="table table-bordered">
|
|
{% for d in doc.website_specifications -%}
|
|
<tr>
|
|
<td class="text-muted" style="width: 30%;">{{ d.label }}</td>
|
|
<td>{{ d.description }}</td>
|
|
</tr>
|
|
{%- endfor %}
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{%- endif %} |