diff --git a/src/pretix/control/templates/pretixcontrol/event/tax_edit.html b/src/pretix/control/templates/pretixcontrol/event/tax_edit.html index 2d06661fc..852ae17e1 100644 --- a/src/pretix/control/templates/pretixcontrol/event/tax_edit.html +++ b/src/pretix/control/templates/pretixcontrol/event/tax_edit.html @@ -18,103 +18,117 @@
{% csrf_token %} {% bootstrap_form_errors form %} -
-
- {% trans "General" %} - {% bootstrap_field form.name layout="control" %} - {% bootstrap_field form.rate addon_after="%" layout="control" %} - {% bootstrap_field form.price_includes_tax layout="control" %} -
-
- {% trans "Advanced" %} - - {% bootstrap_field form.eu_reverse_charge layout="control" %} - {% bootstrap_field form.home_country layout="control" %} -

{% trans "Custom taxation rules" %}

-
- {% blocktrans trimmed %} - These settings are intended for professional users with very specific taxation situations. - If you create any rule here, the reverse charge settings above will be ignored. The rules will be - checked in order and once the first rule matches the order, it will be used and all further rules will - be ignored. If no rule matches, tax will be charged. - {% endblocktrans %} - {% trans "All of these rules will only apply if an invoice address is set." %} -
+
+
+
+
+ {% trans "General" %} + {% bootstrap_field form.name layout="control" %} + {% bootstrap_field form.rate addon_after="%" layout="control" %} + {% bootstrap_field form.price_includes_tax layout="control" %} +
+
+ {% trans "Advanced" %} + + {% bootstrap_field form.eu_reverse_charge layout="control" %} + {% bootstrap_field form.home_country layout="control" %} +

{% trans "Custom taxation rules" %}

+
+ {% blocktrans trimmed %} + These settings are intended for professional users with very specific taxation situations. + If you create any rule here, the reverse charge settings above will be ignored. The rules will be + checked in order and once the first rule matches the order, it will be used and all further rules will + be ignored. If no rule matches, tax will be charged. + {% endblocktrans %} + {% trans "All of these rules will only apply if an invoice address is set." %} +
-
- {{ formset.management_form }} - {% bootstrap_formset_errors formset %} -
- {% for form in formset %} - {% bootstrap_form_errors form %} -
-
- {{ form.id }} - {% bootstrap_field form.DELETE form_group_class="" layout="inline" %} -
-
- {% bootstrap_field form.country layout='inline' form_group_class="" %} -
-
- {% bootstrap_field form.address_type layout='inline' form_group_class="" %} -
-
- {% bootstrap_field form.action layout='inline' form_group_class="" %} -
-
- {% bootstrap_field form.rate layout='inline' form_group_class="" %} -
-
- -
+
+ {{ formset.management_form }} + {% bootstrap_formset_errors formset %} +
+ {% for form in formset %} + {% bootstrap_form_errors form %} +
+
+ {{ form.id }} + {% bootstrap_field form.DELETE form_group_class="" layout="inline" %} +
+
+ {% bootstrap_field form.country layout='inline' form_group_class="" %} +
+
+ {% bootstrap_field form.address_type layout='inline' form_group_class="" %} +
+
+ {% bootstrap_field form.action layout='inline' form_group_class="" %} +
+
+ {% bootstrap_field form.rate layout='inline' form_group_class="" %} +
+
+ +
+
+ {% endfor %}
- {% endfor %} -
- -

- -

+ +

+ +

+
+
-
-
-
- +
+ +
+
+
+
+
+

+ {% trans "Change history" %} +

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