{% extends "tlcc_auth/base_auth.html" %} {% block title %}Tokens{% endblock %} {% block content %}

Refresh tokens

{% for t in outstanding %} {% empty %} {% endfor %}
JTICreatedExpiresStatus
{{ t.jti }} {{ t.created }} {{ t.expires_at }} {% if t.jti in blacklisted_ids %}revoked{% else %}active{% endif %} {% if not t.jti in blacklisted_ids %}Revoke{% endif %}
No tokens
{% endblock %}