brotherton-erpnext/erpnext/templates/generators/item/item.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
989 B
HTML
Raw Normal View History

{% extends "templates/web.html" %}
{% block title %} {{ title }} {% endblock %}
{% block breadcrumbs %}
2021-01-20 12:17:25 +00:00
<div class="item-breadcrumbs small text-muted">
{% include "templates/includes/breadcrumbs.html" %}
</div>
{% endblock %}
{% block page_content %}
2020-12-24 08:44:17 +00:00
<div class="product-container">
2020-12-24 06:10:33 +00:00
{% 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>
2020-12-24 06:10:33 +00:00
{% include "templates/generators/item/item_specifications.html" %}
2020-12-24 06:10:33 +00:00
{{ doc.website_content or '' }}
</div>
</div>
</div>
{% endblock %}
{% block base_scripts %}
<!-- js should be loaded in body! -->
2021-05-07 09:23:42 +00:00
{{ include_script("frappe-web.bundle.js") }}
{{ include_script("controls.bundle.js") }}
{{ include_script("dialog.bundle.js") }}
{% endblock %}