{% import 'macros/forms.html' as forms %} {% macro edit_user_form(form, endpoint, id) %} {% set action = url_for(endpoint) %} {% set form_id = 'form-edit-user-' ~ id %}
{% endmacro %} {% macro change_password_form(form, endpoint, id) %} {% set action = url_for(endpoint) %} {% set form_id = 'form-change-password-' ~ id %} {% endmacro %} {% macro register_user_form(form, endpoint) %} {% endmacro %} {% macro edit_permissions_form(form) %} {% endmacro %}