Like much documentation on generic views in Django, I can't find docs that explicitly describe how to use the new Class-Based Generic Views with Django Forms.
How is it done?
|
Like much documentation on generic views in Django, I can't find docs that explicitly describe how to use the new Class-Based Generic Views with Django Forms. How is it done?
| ||||
|
feedback
|
|
What have you tried so far? The class based views are pretty new, and the docs don't have a lot of examples, so I think you're going to need to get your hands dirty and experiment! If you want to update an existing object, then try using Good luck! | |||
feedback
|
|
The easiest way to use model forms with class based views is to pass in the model and keep a slug / pk captured in url, in which case you will not need to write any view code.
You can also override methods to obtain more complex logic. You can also pass a queryset instead of a model object. Another way is to create a modelform in forms.py and then pass form_class to the url as
This method allows you to define form functions as well as Meta attributes for the form. | |||
|
feedback
|