{% extends "base.html" %} {% from 'macros.html' import scope_desc with context %} {% block title %}{{ _('OAuth authorization') }} - CritiqueBrainz{% endblock %} {% block content %}

{{ _('Do you want to give access to your account to %(name)s?', name=client.name) }}

{{ _('You can revoke access at any time in your profile settings.') }}
{{ _('Name') }}
{{ client.name }}
{{ _('Website') }}
{{ client.website }}
{{ _('Description') }}
{{ client.desc }}
{% set scopes = scope.split() %} {% if scopes %} {{ _('%(client)s is requesting permission to access the following parts of your profile:', client=client.name) }}
    {% for scope in scopes %}
  • {{ scope_desc(scope) }}
  • {% endfor %}
{% else %} {{ _('%(client)s does not require any special permissions.', client=client.name) }} {% endif %}
{{ _('No thanks') }}
{% endblock %}