{% extends 'base.html' %} {% load static from staticfiles %} {% load thumbnail %} {% block title %}{{ category.name_path }}{% endblock %} {% block content %}
{% block breadcrumbs %} Home {% for ancestor in category.get_ancestors %} > {{ ancestor.name }}{% endfor %} {% endblock breadcrumbs %}

{% if category.name %}{{ category.name }}{% else %}Senex Shop{% endif %}

{% for child in child_categories %}

{{ child.name }}

{{ child.description }}

{% endfor %} {% for product in products %}

{{ product.name }}

{{ product.description }}

{% endfor %} {% endblock %}