summaryrefslogtreecommitdiff
path: root/templates/config/templates/form.html
blob: b880ee4c007b1cfb43921c4b1a47c24ca0422908 (plain)
1
2
3
4
5
6
7
8
<form action="{{ form.action }}" method="POST">
  {{ csrf() }}

  {% for field in fields %}
    {{ field.render() }}
  {% endfor %}
</form>