{% load static %} Split Input Form {{ split_form.media }}

Split Text Inputs

Forms

{% csrf_token %} {{ split_form.as_table }}
{% if request.POST %}

Result:

{% for key, value in request.POST.items %} {% endfor %} {% for key, value in split_form.cleaned_data.items %} {% endfor %}
POST key POST value
{{ key }} {{ value }}
form.cleaned_data key form.cleaned_data value
{{ key }} {{ value }}
{% endif %}