brotherton-erpnext/erpnext/templates/generators/item/item_specifications.html
marination b15ff57a66 feat: (wip) Ratings and Reviews
- Added Ratings and Reviews section in Item full page view
- Added provision to write a review with popup
- Created Item Review Doctype to store User-Item unique reviews
- Added privision to enable/disable wishlist and reviews in e commerce settings
- Hide cart and wishlist actions everywhere (even navbar) depending on settings
- Moved some more inline css to scss
- Small logic fixes
TODO: Reviews full page view with paging
2021-10-12 17:27:32 +05:30

19 lines
549 B
HTML

<!-- Is reused to render within tabs as well as independently -->
{% if website_specifications %}
<div class="mt-5 item-website-specification">
<div class="col-md-11">
{% if not show_tabs %}
<h3 class="product-title mb-5 mt-8">Product Details</h3>
{% endif %}
<table class="table table-bordered table-hover">
{% for d in website_specifications -%}
<tr>
<td class="text-muted" style="width: 30%; font-weight: bold;">{{ d.label }}</td>
<td>{{ d.description }}</td>
</tr>
{%- endfor %}
</table>
</div>
</div>
{% endif %}