{% extends "pretixcontrol/event/settings_base.html" %} {% load i18n %} {% load bootstrap3 %} {% block inside %}
{% csrf_token %}
{% trans "Payment settings" %} {% bootstrap_field sform.payment_term_days layout="horizontal" %} {% bootstrap_field sform.payment_term_last layout="horizontal" %} {% bootstrap_field sform.payment_term_weekdays layout="horizontal" %} {% bootstrap_field sform.payment_term_expire_automatically layout="horizontal" %} {% bootstrap_field sform.payment_term_accept_late layout="horizontal" %} {% bootstrap_field sform.tax_rate_default layout="horizontal" %}
{% trans "Payment providers" %}
{% trans "Warning:" %} {% blocktrans trimmed %} Please note that EU Directive 2015/2366 bans surcharging payment fees for most common payment methods within the European Union. Depending on the payment method, this might affect selling to consumers only or to business customers as well. Depending on your country, this legislation might already be in place or become relevant from January 2018 the latest. This is not legal advice. If in doubt, consult a lawyer or refrain from charging payment fees. {% endblocktrans %}
{% for provider in providers %}
{% bootstrap_form provider.form layout='horizontal' %} {% with c=provider.settings_content %} {% if c %}{{ c|safe }}{% endif %} {% endwith %}
{% empty %} {% trans "There are no payment providers available. Please go to the plugin settings and activate one or more payment plugins." %} {% endfor %}
{% endblock %}