15 lines
307 B
Django/Jinja
15 lines
307 B
Django/Jinja
{% extends 'auth/base.html.j2' %}
|
|
|
|
{% block title %}{{ gettext('Consent') }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<p>
|
|
The application "{{ client.client_id }}" requested the following scopes: {{ requested_scope }}
|
|
</p>
|
|
<p> Allow this app to access that data?</p>
|
|
|
|
{{ render_form(form) }}
|
|
|
|
{% endblock %}
|