{% extends 'base.html' %} {% block content %}
{% set footer %} {% endset %} {% call widget.gcard(title='Form Builder', class='col-md-3', footer=footer) %} {% if action and fid %} {{ widget.gform('form_field_reff', form, ['name', 'callback', 'method', 'enctype']) }} {% else %} {{ widget.gform('form_field_reff', form, ['name', 'callback', 'method', 'enctype']) }} {% endif %} {% endcall %} {% call widget.gcard(title='Form builder form collections', class='col-md-9', body_class='p-0') %} {% if collections|length > 0 %} {% for row in collections %} {% endfor %} {% else %} {% endif %}
ID Form name Callback Methods Enctype By Action
{{ row.id }} {{ row.name }} {{ row.callback }} {{ row.method }} {{ row.enctype }} {{ row.user.username }}
No forms found yet.
{% endcall %}
{% endblock %}