Update website

This commit is contained in:
Guilhem Lavaux 2024-11-19 09:35:33 +01:00
parent bb4b0f9be8
commit 011b183e28
4263 changed files with 3014 additions and 720369 deletions

View file

@ -1,12 +0,0 @@
<form class="ajax" id="changeUserGroupForm" action="{{ url('/server/privileges') }}" method="post">
{{ get_hidden_inputs(params) }}
<input type="hidden" name="changeUserGroup" value="1">
<label class="form-label" for="userGroupSelect">{% trans 'User group:' %}</label>
<select class="form-select" name="userGroup" id="userGroupSelect">
<option value=""></option>
{% for option in all_user_groups %}
<option value="{{ option }}"{{ user_group == option ? ' selected' }}>{{ option }}</option>
{% endfor %}
</select>
</form>