{% extends "base.html" %} {% block title %} {{ _("Authorize %(title)s", title=client.title) }} {% endblock %} {% block author_link %} {{ client.owner.username }} {% endblock %} {% block current_user_name %} {{ current_user.display_name }} {% endblock %} {% block client_title %} {{ client.title }} {% endblock %} {% block content %}

{{ self.title() }}

{{ _("%(title)s by %(display_name)s", title=self.client_title(), display_name=self.author_link()) }}

{{ _("wants to access your %(name)s account", name=self.current_user_name()) }}

{% if client.verified %}

{{ _("Verified application") }}

{{ _("ContentDB trusts this application") }}

{% endif %}

{{ _("Public data only") }}

{{ _("Read-only access to your public data") }}

{% if client.description %}

{{ _("About %(title)s", title=client.title) }}

{{ client.description }}

{% endif %} {% if not client.approved %} {% endif %} {% endblock %}