{% extends "base.html" %} {% load get_placeholder_tag %} {% block content %} {% get_placeholder "top" as top %} {% get_placeholder "bottom" as bottom %} {% if top %}
{{ top }}
{% endif %} {% for group in categories %}

{{ group.title }}

{% if group.body %} {{ group.body|linebreaks }} {% endif %} {% if group.product_set.select_related.all %} {% endif %} {% if group.children.select_related.all %} {% endif %}
{% endfor %} {% if bottom %}
{{ bottom }}
{% endif %} {% endblock %}