Dieser Commit ist enthalten in:
2025-06-07 23:13:06 +02:00
Ursprung 0379391736
Commit b20a3216fb
8 geänderte Dateien mit 506 neuen und 2 gelöschten Zeilen

Datei anzeigen

@@ -27,6 +27,7 @@
.action-AUTO_LOGOUT { color: #fd7e14; }
.action-EXPORT { color: #ffc107; }
.action-GENERATE_KEY { color: #20c997; }
.action-CREATE_BATCH { color: #6610f2; }
</style>
{% endblock %}
@@ -65,6 +66,7 @@
<option value="AUTO_LOGOUT" {% if filter_action == 'AUTO_LOGOUT' %}selected{% endif %}>⏰ Auto-Logout</option>
<option value="EXPORT" {% if filter_action == 'EXPORT' %}selected{% endif %}>📥 Export</option>
<option value="GENERATE_KEY" {% if filter_action == 'GENERATE_KEY' %}selected{% endif %}>🔑 Key generiert</option>
<option value="CREATE_BATCH" {% if filter_action == 'CREATE_BATCH' %}selected{% endif %}>🔑 Batch erstellt</option>
</select>
</div>
<div class="col-md-3">
@@ -116,6 +118,7 @@
{% elif log[3] == 'AUTO_LOGOUT' %}⏰ Auto-Logout
{% elif log[3] == 'EXPORT' %}📥 Export
{% elif log[3] == 'GENERATE_KEY' %}🔑 Key generiert
{% elif log[3] == 'CREATE_BATCH' %}🔑 Batch erstellt
{% else %}{{ log[3] }}
{% endif %}
</span>