{% extends 'base.html' %} {% block title %} | Authorise application{% endblock %} {% block main %}
{% csrf_token %}

Authorise application {{ application.name }}

{% for field in form %} {% if field.is_hidden %} {{ field }} {% endif %} {% endfor %}

{{ application.name }} would like to access your data with the following permissions:

    {% for scopes_description in scopes_descriptions %}
  • {{ scopes_description }}
  • {% endfor %}
{% endblock %}