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

Authentication tokens

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

To use a token with lava-tool, ...

{% else %}

There are no tokens associated with your account yet.

Authentication tokens allow scripts using lava-tool to securely access LAVA resources.

XXX help goes here!

{% endif %}

You can create a new authentication token.

{% endblock %}