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

{% trans "Product category" %}

{% csrf_token %} {% bootstrap_form_errors form %}
{% trans "General information" %} {% bootstrap_field form.name layout="control" %}
{% bootstrap_field form.internal_name layout="control" %}
{% bootstrap_field form.description layout="control" %} {% bootstrap_field form.category_type layout="control" horizontal_field_class="big-radio-wrapper col-md-9" %}
{% blocktrans trimmed %} Please note that cross-selling categories are intended as a marketing feature and are not suitable for strictly ensuring that products are only available in certain combinations. {% endblocktrans %}
{% bootstrap_field form.cross_selling_condition layout="control" horizontal_field_class="col-md-9" %} {% bootstrap_field form.cross_selling_match_products layout="control" %}
{% if category %}

{% trans "Category history" %}

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