{% extends 'admin/base.html' %} {% block title %}{% trans %}Payment settings{% endtrans %}{% endblock %} {% block content %} {% if settings.enabled and not enabled_plugins %}
{% trans -%} The payment module is enabled but you did not enable any payment methods. You must enable at least one method for the module to work properly. {%- endtrans %}
{% endif %}
{% trans %}Status{% endtrans %}
{% if settings.enabled %}
{% trans %}Currency{% endtrans %}
{% if not settings.currency %} {% trans %}None selected{% endtrans %} {% else %} {{ settings.currency }}{% if settings.currency in currencies %} ({{ currencies[settings.currency] }}){% endif %} {% endif %}
{% trans %}Conditions{% endtrans %}
{{ settings.conditions or 'None'|safe }}
{% trans %}Register email message{% endtrans %}
{{ settings.register_email or 'None'|safe }}
{% trans %}Success email message{% endtrans %}
{{ settings.success_email or 'None'|safe }}
{% trans %}Configure{% endtrans %}
{% endif %}
{%- if settings.enabled %}

{%- trans -%} The following payment methods are available. You can enable, disable and configure them by clicking on them. {%- endtrans -%}

{%- for short_name, plugin in plugins %}
{% trans %}enabled{% endtrans %} {% trans %}disabled{% endtrans %}
{{ plugin.title }}
{%- endfor %}
{% endif %} {% endblock %}