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

{% trans "Products" %}

{% blocktrans trimmed %} Below, you find a list of all available products. You can click on a product name to inspect and change product details. You can also use the buttons on the right to change the order of products within a give category. {% endblocktrans %}

{% if items|length == 0 %}

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

{% trans "Create a new product" %}
{% else %}

{% trans "Create a new product" %}

{% csrf_token %}
{% regroup items by category as cat_list %} {% for c in cat_list %} {% for i in c.list %} {% if forloop.counter0 == 0 and i.category %}{% endif %} {% endfor %} {% endfor %}
{% trans "Product name" %} {% trans "Category" %} Move Edit
{{ i.category }}
{% if not i.active %}{% endif %} {{ i }} {% if not i.active %}{% endif %}
#{{ i.pk }} {% for k, c in sales_channels.items %} {% if k in i.sales_channels %} {% else %} {% endif %} {% endfor %}
{% if i.available_from or i.available_until %} {% if not i.is_available_by_time %} {% else %} {% endif %} {% endif %} {% if i.admission %} {% elif i.issue_giftcard %} {% endif %} {% if i.var_count %} {% endif %} {% if i.category.is_addon %} {% elif i.require_bundling %} {% elif i.hide_without_voucher %} {% elif i.require_voucher %} {% endif %} {% if i.category %}{{ i.category.name }}{% endif %}
{% include "pretixcontrol/pagination.html" %} {% endif %} {% endblock %}