{% extends "pretixcontrol/event/settings_base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %}{% trans "Taxes" %}{% endblock %} {% block inside %}

{% trans "Taxes" %}

{% bootstrap_form_errors form layout="control" %}
{% trans "Tax rules" %}

{% blocktrans trimmed %} Tax rules define different taxation scenarios that can then be assigned to the individual products. Each tax rule contains a default tax rate and can optionally contain additional rules that depend on the customer's country and type. {% endblocktrans %}

{% if taxrules|length == 0 %}

{% blocktrans trimmed %} You haven't created any tax rules yet. {% endblocktrans %}

{% trans "Create a new tax rule" %}
{% else %}
{% for tr in taxrules %} {% endfor %}
{% trans "Name" %} {% trans "Default" %} {% trans "Usage" %} {% trans "Rate" %}
{{ tr.internal_name|default:tr.name }} {% if tr.default %} {% trans "Default" %} {% else %}
{% csrf_token %}
{% endif %}
{% blocktrans trimmed count count=tr.c_items %} {{ count }} product {% plural %} {{ count }} products {% endblocktrans %} {% if tr.price_includes_tax %} {% blocktrans with rate=tr.rate %}incl. {{ rate }} %{% endblocktrans %} {% else %} {% blocktrans with rate=tr.rate %}excl. {{ rate }} %{% endblocktrans %} {% endif %} {% if tr.has_custom_rules %}
{% trans "with custom rules" %} {% elif tr.eu_reverse_charge %}
{% trans "reverse charge enabled" %} {% endif %}
{% trans "Create a new tax rule" %}
{% endif %}
{% csrf_token %}
{% trans "Tax settings" %} {% bootstrap_field form.tax_rounding layout="control" %} {% bootstrap_field form.display_net_prices layout="control" %}
{% endblock %}