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?

link|improve this question

52% accept rate
feedback

1 Answer

up vote 2 down vote accepted

I'd just write a custom class view that inherits from the TemplateView and put your logic in the get_context_data method.

link|improve this answer
Agreed. Unless one of the object lists is more important than the others, then subclassing TemplateView makes more sense. – Alasdair Nov 6 '11 at 23:41
Actually - a follow up question - how would you access the context data in the template? I tried context['blah'] = ... and then doing something like {% for b in blah %} in my template but that doesn't seem to work. Am I missing something? – 9-bits Nov 7 '11 at 0:55
Have you overwritten get_context_data and made sure to return a dictionary containing blah? – Timmy O'Mahony Nov 7 '11 at 0:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.