{% macro form_field_errors(field) -%} {% if field.errors %}
{% for err in field.errors %} {{ err }} {% endfor %}
{% endif %} {%- endmacro %} {% macro form_field_basic(field, div_classes="") -%}
{{ field.label }} {{ field() }} {{ form_field_errors(field) }}
{%- endmacro %} {% macro form_field_inline(field, div_classes="") -%}
{{ field.label }}
{{ field() }} {{ form_field_errors(field) }}
{%- endmacro %} {% macro editgroup_dropdown(form) -%}

Editgroup Meta

{% if editgroup_id %}

You have an editgroup in progress, and this edit will be included by default. You can override this below. {% else %}

No existing editgroup is in progress (or at least, not is selected). An existing ID can be pasted in, or if you leave that blank but give a description, a new editgroup will be created for this edit. {% endif %} {{ form_field_inline(form.editgroup_id) }} {{ form_field_inline(form.editgroup_description) }}

{%- endmacro %}