{% extends "core/base.html" %} {% load i18n material_form %} {% block browser_title %}{% blocktrans %}Authorize{% endblocktrans %}{% endblock %} {% block content %}
{% if not error %}
{% if application.icon %}
{{ application.name }}
{% endif %}
{% blocktrans with name=application.name %}Authorize {{ name }}{% endblocktrans %}

{% trans "The application requests access to the following scopes:" %}

{% for scope in scopes_descriptions %}

{{ scope }}

{% endfor %}
{% csrf_token %} {% form form=form %} {% part form.allow %}{% endpart %} {% endform %} {% trans "Disallow" %}
{% else %}
{% trans "Error" %}: {{ error.error }}

{{ error.description }}

Please verify if the application is configured correctly or contact one of your site administrators:

{% include "core/partials/admins_list.html" %}
{% endif %} {% endblock %}