{% extends "pretixcontrol/items/base.html" %} {% load i18n %} {% load money %} {% load static %} {% block title %}{% trans "Products" %}{% endblock %} {% block inside %} {% blocktrans asvar s_taxes %}taxes{% endblocktrans %}

{% 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 or move products to a different 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 %}
{% for c, items in cat_list %} {% if c %} {% endif %} {% for i in items %} {% if forloop.counter0 == 0 and i.category %}{% endif %} {% endfor %} {% endfor %}
{% trans "Product name" %} {% trans "Default price" %} Edit
{{ c.internal_name|default:c.name }}{% if c.category_type != "normal" %} ({{ c.get_category_type_display }}){% endif %}
{% if not i.active %}{% endif %} {{ i }} {% if not i.active %}{% endif %}
#{{ i.pk }} {% for c in sales_channels %} {% if i.all_sales_channels or c in i.limit_sales_channels.all %} {% if "." in c.icon %} {% else %} {% endif %} {% else %} {% endif %} {% endfor %}
{% if i.available_from or i.available_until %} {% if not i.is_available_by_time %} {% else %} {% endif %} {% endif %} {% if i.admission %} {% if i.personalized %} {% else %} {% endif %} {% 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.free_price %} {% endif %} {{ i.default_price|money:request.event.currency }} {% if i.original_price %}{{ i.original_price|money:request.event.currency }}{% endif %} {% if i.tax_rule %}
{% if not i.tax_rule.price_includes_tax %} {% blocktrans trimmed with rate=i.tax_rule.rate|floatformat:-2 taxname=i.tax_rule.name %} plus {{ rate }}% {{ taxname }} {% endblocktrans %} {% else %} {% blocktrans trimmed with rate=i.tax_rule.rate|floatformat:-2 taxname=i.tax_rule.name|default:s_taxes %} incl. {{ rate }}% {{ taxname }} {% endblocktrans %} {% endif %} {% endif %}
{% include "pretixcontrol/pagination.html" %} {% endif %} {% endblock %}