{% extends "layout.html" %} {% load uni_form_tags %} {% block title %}{{ client.name }}{% endblock %} {% block content %}

{{ client.name }}

{% if error_description %}

{{ error_description }}

{% endif %}
{% if access_tokens %}

This client has been issued the following access tokens. Click the refresh token button to make a refresh request.

{% for token in access_tokens %} {% endfor %}
Token Refresh Token Expire Scope Refreshable
{{ token.token }}
{{ token.expire }} {% for access_range in token.scope.all %} {{ access_range.key }} {% endfor %} {{ token.refreshable }}
{% else %}

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.

{% for code in codes %} {% endfor %}
Key Expire Scope
{{ code.expire }} {% for access_range in code.scope.all %} {{ access_range.key }} {% endfor %}
{% else %}

This client has no authorization codes.

{% endif %}
{% endblock %}