diff --git a/src/pretix/control/templates/pretixcontrol/item/index.html b/src/pretix/control/templates/pretixcontrol/item/index.html index 9419f4d526..789fffb5ca 100644 --- a/src/pretix/control/templates/pretixcontrol/item/index.html +++ b/src/pretix/control/templates/pretixcontrol/item/index.html @@ -187,7 +187,7 @@ {% endif %} {% for f in plugin_forms %} {% if f.is_layouts and not f.title %} - {% if f.template %} + {% if f.template and not "template" in f.fields %} {% include f.template with form=f %} {% else %} {% bootstrap_form f layout="control" %} @@ -261,7 +261,7 @@ {% bootstrap_field form.show_quota_left layout="control" %} {% for f in plugin_forms %} {% if not f.is_layouts and not f.title %} - {% if f.template %} + {% if f.template and not "template" in f.fields %} {% include f.template with form=f %} {% else %} {% bootstrap_form f layout="control" %} @@ -273,7 +273,7 @@ {% if not f.is_layouts and f.title %}
{{ f.title }} - {% if f.template %} + {% if f.template and not "template" in f.fields %} {% include f.template with form=f %} {% else %} {% bootstrap_form f layout="control" %}