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

{% trans "Products" %}

{% trans "Create new product" %}

{% for i in items %} {% endfor %}
{% trans "Product name" %} {% trans "Category" %}
{{ i.name }} {% if i.category %}{{ i.category.name }}{% endif %}
{% endblock %}