Is there any good tutorial for learn how to use Class Based Generics Views in Django? I think that the documentation is not quite good and i'm a little bit lost when i try to do not usual things with the ListView, DetailView, CreateView, UpdateView and the other ones. I've read the Django documentation , The Django Book and a lot of google search.But i feel that i'm still not comfortable with my knowledges. Thanks
Generic class-based views are a great choice to perform all these tasks. It speeds up the development process. Django provides a set of views, mixins, and generic class-based views. Taking the advantage of it you can solve the most common tasks in web development.
A view is a callable which takes a request and returns a response. This can be more than just a function, and Django provides an example of some classes which can be used as views. These allow you to structure your views and reuse code by harnessing inheritance and mixins.
Simply put, Django is one of the best, most used, and well-liked high-level Python web frameworks out there, thanks to its reliability and continuous improvements. It was designed to save time and provide the infrastructure for creating database-driven sites conveniently and efficiently.
Yes, here are three excellent screencasts by GoDjango:
Part 1
Part 2
Part 3
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With