What's the correct way to extend django's class based views to display a page with a series of list objects.
Does it make sense to create a ListView class for one of the objects and then pass the data for the other object lists in the get_context function?
What's the 'right' way to do this?