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