The best way to understand Django's class-based views is to see it in Classy CBV, so pick your version and jump in at the deep end.| ccbv.co.uk
ListView in Django 5.0. Render some list of objects, set by `self.model` or `self.queryset`. `self.queryset` can actually be any iterable of items, not just a queryset.| ccbv.co.uk
BaseListView in Django 5.0. A base view for displaying a list of objects.| ccbv.co.uk