brotherton-erpnext/erpnext/templates/generators/item/item_specifications.html
2019-06-14 16:32:21 +05:30

14 lines
366 B
HTML

{% if doc.website_specifications -%}
<div class="row item-website-specification mt-5">
<div class="col-md-12">
<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 %}