Add Password change to profile, change tables layout

This commit is contained in:
ghostersk
2025-05-27 13:27:36 +01:00
parent 510501ce7e
commit c613a564ce
7 changed files with 107 additions and 30 deletions
+2 -3
View File
@@ -28,9 +28,8 @@
<select class="form-select" id="api_key" name="api_key" required>
<option value="">Select API Key</option>
{% for api_key in api_keys %}
<option value="{{ api_key.id }}">
{{ api_key.key[:8] }}...{{ api_key.key[-8:] }}
{% if api_key.description %}({{ api_key.description }}){% endif %}
<option value="{{ api_key.id }}">
{{ api_key.description }} - {{ api_key.key[:8] }}...{{ api_key.key[-8:] }}
</option>
{% endfor %}
</select>