[Answer]-Django Form View not receiving data

1👍

I answered my own question. It was a dumb mistake on my part: I wasn’t using the wizard provided id’s and name’s for my html markup. In my template above where I have the ‘label for’ and ‘id’ attributes, they should be populated with the value ‘{{ wizard.form.venue_name.id_for_label }}’. For the ‘name’ attribute, it should be populated with ‘{{ wizard.form.venue_name.html_name }}’.

The pre-defined values that can be used are found here. After making these changes, then the form data was properly submitted to the server.

👤blh83

Leave a comment