{% extends "spirit/_base.html" %} {% load i18n %} {% block title %}{% trans "Category list" %}{% endblock %} {% block content %} {% include "spirit/admin/_side_menu.html" with active="categories" %}

{% trans "Category list" %}

{% trans "Create Category" %}
{% for c in categories %}
{{ c.title }} {% if c.is_removed %} {% endif %} {% if c.is_closed %} {% endif %} {% trans "edit" %}
{% for subc in c.category_set.all %}
--- {{ subc.title }} {% if subc.is_removed %} {% endif %} {% if subc.is_closed %} {% endif %} {% trans "edit" %}
{% endfor %} {% endfor %}
{% endblock %}