To be a Class based view or a generic class base view?
问题 So below I have just created by first Class based view after watching a Django Con EU talk video. It works and understand what it does. I don't understand the difference between a Class based view or a generic class base view - which I have just build? class GroupListView(ListView): """ List all Groups. """ context_object_name = 'groups' template_name = 'contacts/home.html' def get_context_data(self, **kwargs): """ Get the context for this view. """ # Call the base implementation first to get