{% extends "base.html" %} {% block title %}{{ _('Admin ยท Categories') }}{% endblock %} {% block content %} {% include "admin/_nav.html" %}

{{ _('Categories') }}

{% for cat in categories %} {% for sub in cat.children|sort(attribute='sort_order') %} {% endfor %} {% endfor %}
{{ cat.name }} {{ cat.slug }} {{ _('active') if cat.is_active else _('inactive') }} {{ cat.children|length }} {{ _('subcategories') }} {{ _('Field schema') }}
{{ sub.name }} {{ sub.slug }} {{ _('active') if sub.is_active else _('inactive') }} {{ _('Field schema') }}
{% endblock %}