{% extends 'timeseer.html' %} {% from 'macros.html' import alerter %} {% from 'configure.html' import configure_menu with context %} {% block menu %} {{ configure_menu('API keys') }} {% endblock %} {% block main %}

Manage API keys

{{ alerter() }}
{% if api_keys %}
{% for key in api_keys %} {% endfor %}
Name API key Creation date Action
{{ key.name }} {{ key.api_key }} {{ key.creation_date|ts_datetime }}
{% endif %} {% endblock %}