{% extends "pretixcontrol/organizers/base.html" %} {% load i18n %} {% load urlreplace %} {% load bootstrap3 %} {% load money %} {% block inner %}

{% trans "Gift cards acceptance" %}

{% blocktrans trimmed %} This feature allows you to configure acceptance of gift cards across multiple organizer accounts. {% endblocktrans %}

{% csrf_token %}

{% trans "Other organizers you accept gift cards from" %}

{% if issuer_acceptance|length == 0 and not filter_form.filtered %}

{% blocktrans trimmed %} You are not accepting gift cards from other organizers yet. If you want to do so, the other organizer can add you to their list and afterwards, you can confirm this here. {% endblocktrans %}

{% else %}
{% for gca in issuer_acceptance %} {% endfor %}
{% trans "Organizer" %} {% trans "Status" %} {% trans "Reusable media" %}
{{ gca.issuer.name }}
{{ gca.issuer.slug }}
{% if gca.active %} {% trans "active" %} {% else %} {% trans "invited" %} {% endif %} {% if gca.reusable_media %} {% trans "active" %} {% else %} {% trans "disabled" %} {% endif %} {% if gca.active %} {% else %} {% endif %}
{% endif %}
{% csrf_token %}

{% trans "Other organizers accepting gift cards from you" %}

{% blocktrans trimmed %} You can invite other organizers to accept your gift cards. After you have done so, they need to go to the same page in their account and accept your invitation. Note that other organizers will be able to add money to gift cards as well that you will need to collect from them. It is your responsibility to handle the exchange of money to offset the transactions between the two organizers. {% endblocktrans %}

{% blocktrans trimmed %} You can optionally control whether they can access your reusable media. This is required if you want them to participate in a shared system with e.g. NFC payment chips. {% endblocktrans %} {% blocktrans trimmed %} You should only use this option for organizers you trust, since (depending on the activated medium types) this will grant the other organizer access to cryptographic key material required to interact with the media type. {% endblocktrans %}

{% trans "Invite new organizer" %}
{% for gca in acceptor_acceptance %} {% endfor %}
{% trans "Organizer" %} {% trans "Status" %} {% trans "Reusable media" %}
{{ gca.acceptor.name }}
{{ gca.acceptor.slug }}
{% if gca.active %} {% trans "active" %} {% else %} {% trans "invited" %} {% endif %} {% if gca.reusable_media %} {% trans "active" %} {% else %} {% trans "disabled" %} {% endif %}
{% include "pretixcontrol/pagination.html" %} {% endblock %}