{% extends 'base.html' %} {% load scope %} {% load url from future %} {% block title %} | Authorise application{% endblock %} {% block main %}

Authorize application {{ client.name }}

{% csrf_token %}

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

    {% for permission in oauth_data.scope|scopes %}
  • {% if permission == "read" %} Read your data {% else %} Write your data {% endif %}
  • {% endfor %}
{% endblock %}