[Fixed]-Django-crispy-form does not render the submit button and does not render the form action attribute

1👍

Regarding the missing submit button:
You have to add it first!

self.helper.add_input(Submit('submit', 'Submit'))

As can be seen in the 4th listing of the Fundamentals documentation

👤scable

0👍

From the Django Docs (https://docs.djangoproject.com/en/1.8/topics/templates/):

{# this won't be rendered #}

You are outputting your form as a series of Django comments in your template for some reason. Why?

Leave a comment