{% extends "oauth2_provider/base.html" %} {% block body %}
{% if not error %}
{% csrf_token %} {{company_name}}

You can't authorize this application.

You are logged in as: {{username}}.

You are missing the necessary permissions. To authorize this application, you require the following permissions:

    {% for perm in required_permissions %}
  • {{ perm.name }}
  • {% endfor %}

Of those, you are missing the following permissions:

    {% for missing in missing_permissions %}
  • {{ missing.name }}
  • {% endfor %}

Please contact your administrator.

{% endif %}
{% endblock %}