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

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

73 lines
2.2 KiB
HTML
Raw Normal View History

{% from "erpnext/templates/includes/macros.html" import field_filter_section, attribute_filter_section, discount_range_filters %}
2016-01-01 11:53:12 +00:00
{% extends "templates/web.html" %}
2020-12-29 11:48:41 +00:00
{% block header %}
<div class="mb-6">{{ _(item_group_name) }}</div>
2020-12-29 11:48:41 +00:00
{% endblock header %}
{% block script %}
<script type="text/javascript" src="/all-products/index.js"></script>
{% endblock %}
2016-01-04 12:20:40 +00:00
{% block breadcrumbs %}
<div class="item-breadcrumbs small text-muted">
{% include "templates/includes/breadcrumbs.html" %}
</div>
{% endblock %}
2016-01-01 11:53:12 +00:00
{% block page_content %}
<div class="item-group-content" itemscope itemtype="http://schema.org/Product"
data-item-group="{{ name }}">
2020-08-11 10:33:46 +00:00
<div class="item-group-slideshow">
{% if slideshow %} <!-- slideshow -->
2020-12-30 07:30:35 +00:00
{{ web_block(
"Hero Slider",
values=slideshow,
add_container=0,
add_top_padding=0,
add_bottom_padding=0,
) }}
{% endif %}
{% if description %} <!-- description -->
2020-12-30 07:30:35 +00:00
<div class="item-group-description text-muted mb-5" itemprop="description">{{ description or ""}}</div>
{% endif %}
</div>
2020-12-30 07:30:35 +00:00
<div class="row">
<div id="product-listing" class="col-12 order-2 col-md-9 order-md-2 item-card-group-section">
<!-- Products Rendered in all-products/index.js-->
2020-12-29 11:48:41 +00:00
</div>
2020-12-29 11:48:41 +00:00
<div class="col-12 order-1 col-md-3 order-md-1">
<div class="collapse d-md-block mr-4 filters-section" id="product-filters">
<div class="d-flex justify-content-between align-items-center mb-5 title-section">
<div class="mb-4 filters-title" > {{ _('Filters') }} </div>
<a class="mb-4 clear-filters" href="/{{ doc.route }}">{{ _('Clear All') }}</a>
</div>
<!-- field filters -->
{{ field_filter_section(field_filters) }}
2020-12-29 11:48:41 +00:00
<!-- attribute filters -->
{{ attribute_filter_section(attribute_filters) }}
2020-12-29 11:48:41 +00:00
</div>
</div>
</div>
</div>
<script>
frappe.ready(() => {
$('.btn-prev, .btn-next').click((e) => {
const $btn = $(e.target);
$btn.prop('disabled', true);
const start = $btn.data('start');
let query_params = frappe.utils.get_query_params();
query_params.start = start;
let path = window.location.pathname + '?' + frappe.utils.get_url_from_dict(query_params);
window.location.href = path;
});
});
</script>
2016-04-20 10:50:49 +00:00
{% endblock %}