In Part 1, you created a basic Django app with views, models, templates, and admin. In this post, you’ll learn how to handle user input by creating forms and saving data to your database using Django’s built-in form features.
What You’ll Learn
- Create a Django Form class
- Render the form in a template
- Handle form submission (POST)
- Validate user input
- Save form data to the database