{% extends "pretixcontrol/event/settings_base.html" %} {% load i18n %} {% load bootstrap3 %} {% load getitem %} {% block inside %}

{% trans "Invoice settings" %}

{% csrf_token %} {% bootstrap_form_errors form %}
{% trans "Invoice generation" %} {% bootstrap_field form.invoice_generate layout="control" %} {% bootstrap_field form.invoice_generate_sales_channels layout="control" %} {% bootstrap_field form.invoice_email_attachment layout="control" %} {% bootstrap_field form.invoice_email_organizer layout="control" %} {% bootstrap_field form.invoice_language layout="control" %} {% bootstrap_field form.invoice_period layout="control" %} {% if not request.event.settings.show_dates_on_frontpage %}
{% blocktrans trimmed %} You configured that your shop is not an event and the event date should not be shown. Therefore, we recommend that you set the date of service to a different option. {% endblocktrans %}
{% endif %} {% bootstrap_field form.invoice_include_free layout="control" %} {% bootstrap_field form.invoice_show_payments layout="control" %} {% bootstrap_field form.invoice_reissue_after_modify layout="control" %} {% bootstrap_field form.invoice_numbers_consecutive layout="control" %} {% bootstrap_field form.invoice_numbers_prefix layout="control" %} {% bootstrap_field form.invoice_numbers_prefix_cancellations layout="control" %} {% bootstrap_field form.invoice_numbers_counter_length layout="control" %}
{% trans "Address form" %} {% bootstrap_field form.invoice_address_asked layout="control" %} {% bootstrap_field form.invoice_address_required layout="control" %} {% bootstrap_field form.invoice_name_required layout="control" %} {% bootstrap_field form.invoice_address_company_required layout="control" %} {% bootstrap_field form.invoice_address_vatid layout="control" %} {% bootstrap_field form.invoice_address_beneficiary layout="control" %} {% bootstrap_field form.invoice_address_not_asked_free layout="control" %} {% bootstrap_field form.invoice_address_custom_field layout="control" %} {% bootstrap_field form.invoice_address_custom_field_helptext layout="control" %} {% bootstrap_field form.invoice_address_explanation_text layout="control" %}
{% trans "Issuer details" %} {% bootstrap_field form.invoice_address_from_name layout="control" %} {% bootstrap_field form.invoice_address_from layout="control" %} {% bootstrap_field form.invoice_address_from_zipcode layout="control" %} {% bootstrap_field form.invoice_address_from_city layout="control" %} {% bootstrap_field form.invoice_address_from_country layout="control" %} {% bootstrap_field form.invoice_address_from_tax_id layout="control" %} {% bootstrap_field form.invoice_address_from_vat_id layout="control" %}
{% trans "Invoice customization" %} {% bootstrap_field form.invoice_renderer layout="control" %} {% bootstrap_field form.invoice_attendee_name layout="control" %} {% bootstrap_field form.invoice_event_location layout="control" %} {% bootstrap_field form.invoice_include_expire_date layout="control" %} {% bootstrap_field form.invoice_introductory_text layout="control" %} {% bootstrap_field form.invoice_additional_text layout="control" %} {% bootstrap_field form.invoice_footer_text layout="control" %} {% bootstrap_field form.invoice_logo_image layout="control" %} {% bootstrap_field form.invoice_renderer_font layout="control" %} {% bootstrap_field form.invoice_renderer_highlight_order_code layout="control" %} {% bootstrap_field form.invoice_eu_currencies layout="control" %}
{% trans "Invoice transmission" %}

{% blocktrans trimmed %} pretix can transmit invoices using different transmission methods. Different transmission methods might be required depending on country and industry. By default, sending invoices as PDF files via email is always available. Other types of transmission can be added by plugins. {% endblocktrans %}

{% blocktrans trimmed %} Whether a transmission method listed here is actually selectable for customers may depend on the country of the customer or whether the customer is entering a business address. {% endblocktrans %}

{% for t in transmission_types %} {% if transmission_providers|getitem:t.identifier %} {% for p, is_ready, settings_url in transmission_providers|getitem:t.identifier %} {% endfor %} {% endif %} {% endfor %}
{% trans "Transmission method" %} {% trans "Status" %}
{{ t.verbose_name }} {% if ready|getitem:t.identifier %} {% trans "Available" %} {% if t.exclusive %} {% trans "(exclusive)" %} {% endif %} {% else %} {% trans "Unavailable" %} {% endif %}
{{ p.verbose_name }} {% if is_ready %} {% trans "Available" %} {% else %} {% trans "Not configured" %} {% endif %} {% if settings_url %} {% trans "Settings" %} {% endif %}

{% url "control:event.settings.plugins" event=request.event.slug organizer=request.organizer.slug as plugin_settings_url %} {% trans "Enable additional invoice transmission plugins" %}

{% endblock %}