{% extends "oauth_api/base.html" %} {% load i18n %} {% block content%}
{% if error %}

{% trans "Could not authorize the client" %}

Error:
{{ error.error }}
{% else %}

{% trans "An application would like to connect to your account" %}

{% blocktrans with name=application.name %} The app {{ name }} would like have following permissions on your data: {% endblocktrans %}

{% csrf_token %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {{ form.errors }} {{ form.non_field_errors }}
{% endif %}
{% endblock content%}