{% extends "layout.html" %} {% load uni_form_tags %} {% block title %}{{ client.name }}{% endblock %} {% block content %}
{{ error_description }}
This client has been issued the following access tokens. Click the refresh token button to make a refresh request.
Token | Refresh Token | Expire | Scope | Refreshable |
---|---|---|---|---|
{{ token.token }} | {{ token.expire }} | {% for access_range in token.scope.all %} {{ access_range.key }} {% endfor %} | {{ token.refreshable }} |
This client has no access tokens.
{% endif %} {% if codes %}This client has been issued the following authorization code. Click the authorize code button to make an authorization request.
Key | Expire | Scope |
---|---|---|
{{ code.expire }} | {% for access_range in code.scope.all %} {{ access_range.key }} {% endfor %} |
This client has no authorization codes.
{% endif %}