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

{% trans "Product categories" %}

{% blocktrans trimmed %} You can use categories to group multiple products together in an organized way. {% endblocktrans %}

{% 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" %}

{% csrf_token %}
{% for c in categories %} {% endfor %}
{% trans "Product categories" %} {% trans "Category type" %}
{{ c.internal_name|default:c.name }} {% if c.is_addon %}{% trans "Add-on product category" %} {% elif c.cross_selling_mode is None %}{% trans "Normal category" %} {% elif c.cross_selling_mode == 'both' %}{% trans "Combined category" %} {% elif c.cross_selling_mode == 'only' %}{% trans "Cross-selling category" %} {% endif %}
{% include "pretixcontrol/pagination.html" %} {% endif %} {% endblock %}