What is the advantage of using class based views and what extra feature it provides us.
Advantage of using class based Views
Class based views provide a way to templatize functionality so that you didn’t have to write the same code code over and over again.
They are referred to as “generic views” because they provide solutions to common requirements. The classes have documentation on Django’s project site that shows what functionality is offered, what settings are required or possible, and how to extend them.