{% extends "base.html" %} {% block content %}

Parts page!

{% if category %} {% include "part/cat_link.html" with category=category %}

Child categories

{% else %} No category! {% endif %} Here is a list of all the parts: {% for part in parts %} {% endfor %}
{{ part.name }} {{ part.description }}
{% endblock %}