{% from "erpnext/templates/includes/macros.html" import attribute_filter_section, field_filter_section, discount_range_filters %} {% extends "templates/web.html" %} {% block title %}{{ _('Products') }}{% endblock %} {% block header %}
{{ _('Products') }}
{% endblock header %} {% block page_content %}
{% if items %} {% for item in items %} {% include "erpnext/www/all-products/item_row.html" %} {% endfor %} {% else %} {% include "erpnext/www/all-products/not_found.html" %} {% endif %}
{% if frappe.form_dict.start or frappe.form_dict.field_filters or frappe.form_dict.attribute_filters or frappe.form_dict.search %} {% endif %}
{{ _('Filters') }}
{{ _('Clear All') }}
{% if field_filters %} {{ field_filter_section(field_filters) }} {% endif %} {% if attribute_filters %} {{ attribute_filter_section(attribute_filters) }} {% endif %} {% if discount_filters %} {{ discount_range_filters(discount_filters) }} {% endif %}
{% if frappe.form_dict.start|int > 0 %} {% endif %} {% if items|length >= page_length %} {% endif %}
{% endblock %}