{% extends "pretixcontrol/item/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load formset_tags %} {% block inside %}
{% csrf_token %}
{% trans "General" %} {% bootstrap_field form.active layout="control" %} {% bootstrap_field form.name layout="control" %}
{% bootstrap_field form.internal_name layout="control" %}
{% bootstrap_field form.category layout="control" %}
{% for e in form.errors.admission %}
{{ e }}
{% endfor %}
{% bootstrap_field form.description layout="control" %} {% bootstrap_field form.picture layout="control" %} {% bootstrap_field form.require_approval layout="control" %} {% if meta_forms %} {% endif %}
{% trans "Price" %} {% bootstrap_field form.default_price addon_after=request.event.currency layout="control" %} {% bootstrap_field form.tax_rule layout="control" %} {% bootstrap_field form.free_price layout="control" %} {% bootstrap_field form.original_price addon_after=request.event.currency layout="control" %}
{% trans "Availability" %} {% bootstrap_field form.sales_channels layout="control" %} {% bootstrap_field form.available_from layout="control" %} {% bootstrap_field form.available_until layout="control" %} {% bootstrap_field form.max_per_order layout="control" %} {% bootstrap_field form.min_per_order layout="control" %} {% bootstrap_field form.require_voucher layout="control" %} {% bootstrap_field form.hide_without_voucher layout="control" %} {% bootstrap_field form.require_bundling layout="control" %} {% if form.require_membership %} {% bootstrap_field form.require_membership layout="control" %}
{% bootstrap_field form.require_membership_types layout="control" %} {% bootstrap_field form.require_membership_hidden layout="control" %}
{% endif %} {% bootstrap_field form.allow_cancel layout="control" %} {% bootstrap_field form.allow_waitinglist layout="control" %} {% bootstrap_field form.hidden_if_available layout="control" %}
{% for v in formsets.values %}
{{ v.title }} {% include v.template with formset=v %}
{% endfor %}
{% trans "Tickets & check-in" %} {% bootstrap_field form.generate_tickets layout="control" %} {% bootstrap_field form.checkin_attention layout="control" %}
{% trans "Additional settings" %} {% bootstrap_field form.issue_giftcard layout="control" %} {% bootstrap_field form.show_quota_left layout="control" %} {% if form.grant_membership_type %} {% bootstrap_field form.grant_membership_type layout="control" %}
{% bootstrap_field form.grant_membership_duration_like_event layout="control" %}
{% blocktrans asvar days %}days{% endblocktrans %} {% blocktrans asvar months %}months{% endblocktrans %}
{% bootstrap_field form.grant_membership_duration_months layout="" addon_after=months label_class="sr-only" form_group_class="" %}
{% bootstrap_field form.grant_membership_duration_days layout="" addon_after=days label_class="sr-only" form_group_class="" %}
{% endif %} {% for f in plugin_forms %} {% bootstrap_form f layout="control" %} {% endfor %}

{% trans "Product history" %}

{% include "pretixcontrol/includes/logs.html" with obj=item %}
{% endblock %}