Lizenzkey Generator

Dieser Commit ist enthalten in:
2025-06-07 22:58:11 +02:00
Ursprung b0c8e8efc0
Commit 0379391736
6 geänderte Dateien mit 281 neuen und 5 gelöschten Zeilen

Datei anzeigen

@@ -26,6 +26,7 @@
.action-LOGOUT { color: #6c757d; }
.action-AUTO_LOGOUT { color: #fd7e14; }
.action-EXPORT { color: #ffc107; }
.action-GENERATE_KEY { color: #20c997; }
</style>
{% endblock %}
@@ -63,6 +64,7 @@
<option value="LOGOUT" {% if filter_action == 'LOGOUT' %}selected{% endif %}>🚪 Abmeldung</option>
<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>
</select>
</div>
<div class="col-md-3">
@@ -113,6 +115,7 @@
{% elif log[3] == 'LOGOUT' %}🚪 Abmeldung
{% elif log[3] == 'AUTO_LOGOUT' %}⏰ Auto-Logout
{% elif log[3] == 'EXPORT' %}📥 Export
{% elif log[3] == 'GENERATE_KEY' %}🔑 Key generiert
{% else %}{{ log[3] }}
{% endif %}
</span>