{% extends "base.html" %} {% from "_helpers.html" import csrf_field %} {% block content %}

Hey, {{ current_user.gecos }}! Logout

Authorized applications

{% for token in tokens %} {% else %} {% endfor %}
Application name Scopes Expires
{% if token.client.approved %}{% endif %} {{ token.client.client_name }} {% for scope in token.get_scope().split() %}{{ scope }} {% endfor %} {{ token.get_expires_at() }}
{{ csrf_field() }}
No authorized applications yet

My applications Register new application

{% for client in clients %} {% else %} {% endfor %}
Application name
{{ client.client_name }}Edit
No registered applications yet
{% endblock %}