{% extends "base.html" %} {% load static %} {% block content %} {% include "part/cat_link.html" with category=category %}

{{ category.name }}
{{ category.description }}

{% if category.has_children %}

Subcategories

{% include "part/category_subcategories.html" with children=category.children.all %} {% endif %} {% if category.has_parts %}

Parts

{% include "part/category_parts.html" with parts=category.parts.all %} {% endif %}
{% include 'modal.html' %} {% endblock %} {% block javascript %} {% endblock %}