{% extends "html/page.html" %} {% block content %} {% include 'html/product_search_box.html' %} {% include 'html/product_breadcrumbs.html' %}
{% if slideshow %} {% include "html/slideshow.html" %} {% endif %} {% if description %}
{{ description or ""}}
{% else %}

{{ name }}

{% endif %} {% if sub_groups %}
{% for d in sub_groups %} {% endfor %}

{% endif %} {% if items %}
{% for item in items %} {{ item }} {% endfor %}
{% if len(items)==20 %}
Showing top 20
{% endif %} {% else %}
No items listed.
{% endif %}
{% endblock %}