diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-14 10:47:32 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-14 15:26:23 +0200 |
commit | c3a2dc028db95530bf078aafc05270a110a556d1 (patch) | |
tree | 4a10d382ca7ed6e37694974a091c39cc3f259f54 /ogcp/templates/auth/edit_user.html | |
parent | a90f4207bd2288eb760e3a36c44dca2a4a0e7cb8 (diff) |
forms: use checkboxes for scope selection in UserForm
Enable selection of multiple scopes in user/add and user/edit
for restricted users.
Replace quick form creation with an inline form definition in
add_user.html and edit_user.html
Diffstat (limited to 'ogcp/templates/auth/edit_user.html')
-rw-r--r-- | ogcp/templates/auth/edit_user.html | 45 |
1 files changed, 40 insertions, 5 deletions
diff --git a/ogcp/templates/auth/edit_user.html b/ogcp/templates/auth/edit_user.html index 51437c9..b9e748d 100644 --- a/ogcp/templates/auth/edit_user.html +++ b/ogcp/templates/auth/edit_user.html @@ -9,10 +9,45 @@ <h1 class="m-5">{{_('Edit user {}').format(form.username.data)}}</h1> -{{ wtf.quick_form(form, - action=url_for('user_edit_post'), - method='post', - button_map={'submit_btn':'primary'}, - id='user-form') }} +<form action="{{ url_for('user_edit_post') }}" method="post" class="form"> + {{ form.hidden_tag() }} + + <div class="form-group"> + {{ form.username.label(class_='form-label') }} + {{ form.username(class_='form-control') }} + </div> + + <div class="form-group"> + {{ form.pwd.label(class_='form-label') }} + {{ form.pwd(class_='form-control') }} + </div> + + <div class="form-group"> + {{ form.pwd_confirm.label(class_='form-label') }} + {{ form.pwd_confirm(class_='form-control') }} + </div> + + <div class="form-group form-check"> + {{ form.admin(class_='form-check-input') }} + {{ form.admin.label(class_='form-check-label') }} + </div> + + <div class="form-group"> + {{ form.scopes.label(class_='form-label') }} + <div class="form-text text-muted">{{ form.scopes.description }}</div> + <div> + {% for value, label, checked in form.scopes.iter_choices() %} + <div class="form-check"> + <input class="form-check-input" type="checkbox" name="{{ form.scopes.name }}" value="{{ value }}" {% if checked %} checked {% endif %}> + <label class="form-check-label">{{ label }}</label> + </div> + {% endfor %} + </div> + </div> + + <div class="form-group"> + {{ form.submit_btn(class_='btn btn-primary') }} + </div> +</form> {% endblock %} |