{% extends "pretixcontrol/items/base.html" %} {% load i18n %} {% block title %}{% trans "Product categories" %}{% endblock %} {% block inside %}

{% trans "Product categories" %}

{% if categories|length == 0 %}

{% blocktrans trimmed %} You haven't created any categories yet. {% endblocktrans %}

{% trans "Create a new category" %}
{% else %}
{% trans "Create a new category" %}
{% for c in categories %} {% endfor %}
{% trans "Product categories" %}
{{ c.name }}
{% endif %}
{% endblock %}