{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% block title %}{{ object }} :: {% trans "Product" %}{% endblock %} {% block content %} {% if object.id %}

{% trans "Modify product:" %} {{ object }}

{% else %}

{% trans "Create product" %}

{% blocktrans trimmed %} You will be able to adjust further settings in the next step. {% endblocktrans %}

{% endif %} {% if object.id and not object.quotas.exists %}
{% blocktrans trimmed %} Please note that your product will not be available for sale until you have added your item to an existing or newly created quota. {% endblocktrans %}
{% elif object.pk and not object.is_available_by_time %}
{% blocktrans trimmed %} This product is currently not being sold since you configured below that it should only be available in a certain timeframe. {% endblocktrans %}
{% endif %} {% if object.hidden_if_available and object.hidden_if_available.availability.0 == 100 %}
{% blocktrans trimmed %} This product is currently not being shown since you configured below that it should only be visible if a certain other quota is already sold out. {% endblocktrans %}
{% endif %} {% if not request.event.has_subevents and object.hidden_if_item_available and object.hidden_if_item_available.check_quotas.0 == 100 %}
{% blocktrans trimmed %} This product is currently not being shown since you configured below that it should only be visible if a certain other product is already sold out. {% endblocktrans %}
{% endif %} {% block inside %} {% endblock %} {% endblock %}