{% extends "django_testproject/base.html" %} {% block content %}

Authentication tokens

{% if token_list %} {% for token in token_list %} {% endfor %}
Description Created on Last used on Secret Actions
{{ token.description|default:"empty" }} {{ token.created_on|date }} {{ token.last_used_on|default_if_none:"Never" }} delete this token edit the description
{% else %}

There are no tokens associated with your account yet

{% endif %}

You can create new authentication token.

{% endblock %}