{% extends "base.html" %} {% block title %}Lizenzserver Konfiguration{% endblock %} {% block content %}

Lizenzserver Konfiguration

Feature Flags
{% for flag in feature_flags %} {% else %} {% endfor %}
Feature Beschreibung Status Aktion
{{ flag[1] }} {{ flag[2] }} {% if flag[3] %} Aktiv {% else %} Inaktiv {% endif %}
Keine Feature Flags konfiguriert
API Clients
{% for client in api_clients %} {% else %} {% endfor %}
Name API Key Status Erstellt
{{ client[1] }} {{ client[2][:12] }}... {% if client[3] %} Aktiv {% else %} Inaktiv {% endif %} {{ client[4].strftime('%d.%m.%Y') if client[4] else '-' }}
Keine API Clients vorhanden
Rate Limits
{% for limit in rate_limits %} {% else %} {% endfor %}
API Key Requests/Minute Requests/Stunde Requests/Tag Burst Size Aktionen
{{ limit[1][:12] }}... {{ limit[2] }} {{ limit[3] }} {{ limit[4] }} {{ limit[5] }}
Keine Rate Limits konfiguriert
{% endblock %} {% block scripts %} {% endblock %}