{% extends 'layout/admin_page.html' %} {% from 'forms/_form.html' import form_header, form_rows, form_footer %} {% block title %}{% trans %}Payment{% endtrans %}{% endblock %} {%- block content %} {% if not plugins %}
{% trans -%} There are no payment plugins installed, so the payment module cannot be enabled for any event. To install a payment plugin, install the plugin's Python package and enable it in indico.conf. {%- endtrans %}
{% endif %} {{ form_header(form) }} {{ form_rows(form) }} {% call form_footer(form) %} {% endcall %} {%- if plugins %}

{% trans %}The following payment plugins are available:{% endtrans %}

{%- for plugin in plugins %}
{{ plugin.version }}
{{ plugin.title }}
{%- endfor %}
{%- endif %} {%- endblock %}