{% extends theme('base.html') %} {% import 'macro/form.html' as fui %} {% block content %}
{% if client.logo_uri %} {{ client.client_name }} {% endif %}

{{ gettext('The application %(name)s is requesting access to:', name=client.client_name) }}

{% for scope in grant.request.scope.split(" ") %} {% if scope not in ignored_scopes %}
{% if scope in scope_details %}
{{ scope_details[scope][1] }}
{% else %}
{{ scope }}
{% endif %}
{% endif %} {% endfor %}
{{ gettext('You are logged in as %(name)s', name=user.formatted_name[0]) }}
{% call fui.render_form(form) %}
{% endcall %}
{% endblock %}