{% extends "base.html" %} {% block content %}

Registered Applications

Register New App
{% if apps %}
{% for app in apps %}
{% if app.logo_uri %} {{ app.app_name }} Logo {% else %}
{% endif %}
{{ app.app_name }}

Client ID: {{ app.client_id }}
Registered: {{ app.date_registered.strftime('%Y-%m-%d %H:%M') if app.date_registered else 'N/A' }}
{% if app.last_updated %} Updated: {{ app.last_updated.strftime('%Y-%m-%d %H:%M') }} {% endif %} {% if app.is_test_app %}
Test App: Expires {{ app.test_app_expires_at.strftime('%Y-%m-%d %H:%M') }} {% endif %}

  • Redirect URIs:
      {% for uri in app.redirect_uris.split() %}
    • {{ uri }}
    • {% else %}
    • None configured
    • {% endfor %}
  • Allowed Scopes:
    {% for scope in app.scopes.split() %} {{ scope }} {% else %} None configured {% endfor %}
  • {% if app.contacts %}
  • Contacts: {{ app.contacts }}
  • {% endif %}
Edit
{{ form.hidden_tag() }}
{% endfor %}
{% else %} {% endif %}
{% endblock %}