{% import 'macros/forms.html' as forms %} {% macro add_group_form(form, endpoint) %} {% set action = url_for(endpoint) %} {% set form_id = 'form-add-group--1' %}
{{ form.hidden_tag() }}
{{ forms.field_row(form.name, 'Name') }}
{{ forms.field_row(form.description, 'Description') }}
{% for key, field in form._fields.items() if key.startswith('p_') %}
{{ forms.field_row(field, field.label) }}
{% endfor %}
{{ form.submit() }}
{% endmacro %} {% macro edit_group_form(form, endpoint, id) %} {% set action = url_for(endpoint, id_=id) %} {% set form_id = 'form-edit-group-' ~ id %}
{{ form.hidden_tag() }}
{{ forms.field_row(form.description, 'Description') }}
{% for key, field in form._fields.items() if key.startswith('p_') %}
{{ forms.field_row(field, field.label) }}
{% endfor %}
{{ form.submit() }}
{% endmacro %}