{# Edit action form component #}
{{ action['action'] | format_name }}
{% if not action['args'] == None %}
{% if not action['args'].__class__.__name__ == 'dict' %}
{% else %} {{ forms.hidden_tag() }} {% for field in forms %} {% if field.type not in ['CSRFTokenField'] %}
{{ field(class="form-control") }}
{{ field.description }}
{% endif %} {% endfor %} {% endif %}
{% endif %}