{% comment %}
Use to insert a form field into a table
Boolean options:
no_label: Don't include a label, so field takes up two columns
two_rows: Show label and field on separate rows
{% endcomment %}
{% if not no_label or two_rows %}
{{ field.label_tag }}
{% if two_rows %}
{% endif %}
{% endif %}
{{ field.errors }}{{ field }}{% if field.help_text %} {{ field.help_text|safe }}{% endif %}