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

API Tokens

{% csrf_token %}
{% if created_token %}
Created token. Save it now — it won't be shown again.
{{ created_token }}
{% endif %}
Your tokens
{% for t in tokens %} {% empty %} {% endfor %}
NameScopesCreatedExpiresRevoked
{{ t.name }} {{ t.scopes }} {{ t.created }} {{ t.expires }} {{ t.revoked }} {% if not t.revoked %}
{% csrf_token %}
{% endif %}
No tokens
{% endblock %}