{% extends 'base.html' %} {% block title %}{{ _('Authorize access to your data') }}{% endblock %} {% block content %} {% set consumer = consumer.name or _('Anonymous Party') %}

{# L10n: consumer is the Oauth Consumer, e.g. FlightDeck #} {{ _('Authorize Token for {0}')|f(consumer) }}

{% trans %}

{{ consumer }} wants to be authorized to act on your behalf. This may include:

{% endtrans %}
{{ csrf() }} {# TODO(potch): A little help? #} {{ form.as_table() }}
{% endblock %}