{% extends 'oauth/apps_base.html' %} {% from 'forms/_form.html' import form_header, form_rows, form_footer %} {% set num_tokens = application.tokens.count() %} {% block subtitle %} {{ application.name }} {% endblock %} {% block content %}
{%- trans %}Details{% endtrans -%}
{# Do not translate
since they are the official terms in OAuth2 RFC #}
Client ID
{#--#}
{{ application.client_id }}
Client Secret
{#--#}
{{ application.client_secret }}
Authorize URL
{#--#}
{{ url_for('.oauth_authorize', _external=true) }}
Access token URL
{#--#}
{{ url_for('.oauth_token', _external=true) }}

{{ form_header(form) }} {{ form_rows(form) }} {% call form_footer(form) %} {% trans %}Back{% endtrans %} {% endcall %}
{% endblock %}