{% 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 item in items %} {{ item }} {% endfor %}
{% if frappe.form_dict.start|int > 0 %} Prev {% endif %} {% if items|length == page_length %} Next {% endif %}
{% else %}
No items listed.
{% endif %}
{% endblock %}