|
{% if meta["type"] == "text" %}
{% elif meta["type"] == "radio" %}
{% for option in meta["options"] %}
{% end %}
{% elif meta["type"] == "checkbox" %}
{% else %}
{% end %}
{# Show inline error for this field #}
{% if field_errors.get(field_name) %}
{{ field_errors.get(field_name) }}
{% end %}
|