2019-03-19 11:48:32 +05:30
|
|
|
{% extends "templates/web.html" %}
|
|
|
|
|
|
|
|
{% block title %} {{ title }} {% endblock %}
|
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
2021-01-20 17:47:25 +05:30
|
|
|
<div class="item-breadcrumbs small text-muted">
|
|
|
|
{% include "templates/includes/breadcrumbs.html" %}
|
|
|
|
</div>
|
2019-03-19 11:48:32 +05:30
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block page_content %}
|
2020-12-24 14:14:17 +05:30
|
|
|
<div class="product-container">
|
2020-12-24 11:40:33 +05:30
|
|
|
{% from "erpnext/templates/includes/macros.html" import product_image %}
|
|
|
|
<div class="item-content">
|
|
|
|
<div class="product-page-content" itemscope itemtype="http://schema.org/Product">
|
|
|
|
<div class="row mb-5">
|
|
|
|
{% include "templates/generators/item/item_image.html" %}
|
|
|
|
{% include "templates/generators/item/item_details.html" %}
|
|
|
|
</div>
|
2019-03-19 11:48:32 +05:30
|
|
|
|
2020-12-24 11:40:33 +05:30
|
|
|
{% include "templates/generators/item/item_specifications.html" %}
|
2019-03-19 11:48:32 +05:30
|
|
|
|
2020-12-24 11:40:33 +05:30
|
|
|
{{ doc.website_content or '' }}
|
|
|
|
</div>
|
2019-03-19 11:48:32 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block base_scripts %}
|
|
|
|
<!-- js should be loaded in body! -->
|
2021-05-07 14:53:42 +05:30
|
|
|
{{ include_script("frappe-web.bundle.js") }}
|
|
|
|
{{ include_script("controls.bundle.js") }}
|
|
|
|
{{ include_script("dialog.bundle.js") }}
|
|
|
|
{% endblock %}
|