Edit {{ form_type.replace('_', ' ').title() }} Record
{% for field, value in record.__dict__.items() %} {% if not field.startswith("_") %}
{{ field.replace('_', ' ').title() }}
{% endif %} {% endfor %}
Update