{% extends "base.html" %} {% load i18n %} {% block content %} {% for key in api_keys %} {% endfor %}
{% trans 'Name' %} {% trans 'Token' %} {% trans 'Allowed Instances' %} {% trans 'Enabled' %}
{{ key.name }}
{% for instance in key.allowed_instances.all %} {{ instance }} {% empty %} {% trans 'All' %} {% endfor %} {% if key.enabled %} {% else %} {% endif %} {% if key.allow_restart %} {% else %} {% endif %} {% if key.allow_reload %} {% else %} {% endif %} {% if key.allow_export %} {% else %} {% endif %}
{% trans 'Add API Key' %} {% trans 'API Documentation' %}
{% endblock %}