{% extends "templates/web.html" %} {% block header %}

{{ _("Products") }}

{% endblock %} {% block breadcrumbs %} {% endblock %} {% block page_content %}
{% if slideshow %} {% include "templates/includes/slideshow.html" %} {% endif %} {% if description %}
{{ description or ""}}
{% endif %}
{% if items %}
{% for i in range(0, page_length) %} {% if items[i] %} {{ items[i] }} {% endif %} {% endfor %}
{% if frappe.form_dict.start|int > 0 %} {{ _("Prev") }} {% endif %} {% if items|length > page_length %} {{ _("Next") }} {% endif %}
{% else %}
{{ _("No items listed") }}.
{% endif %}
{% endblock %}