{% from 'forms/_form.html' import form_header, form_footer, form_rows, form_fieldset %} {{ form_header(form) }} {% call form_fieldset(_('General settings')) %} {{ form_rows(form, skip=form._notification_fields) }} {% endcall %} {% call form_fieldset(_('Notifications')) %} {{ form_rows(form, fields=form._notification_fields) }} {% endcall %} {% call form_footer(form) %} {% trans %}Cancel{% endtrans %} {% endcall %}