{% extends "base.html" %} {% block title %} Authorize {{ application.name }} ยท Quay {% endblock %} {% block body_content %}

{{ application.name }}

{{ application.organization.name }}

This application would like permission to:
{% for index, scope in enumerate(scopes) %}

{{ scope.title }} {% if scope.dangerous %} {% endif %}

{% if scope.dangerous %}
This scope grants permissions which are potentially dangerous. Be careful when authorizing it!
{% endif %} {{ scope.description }}
{% endfor %}
{% if has_dangerous_scopes %} {% else %}
{% endif %}
{% endblock %}