I'm using Django 1.3's Class-base generic views for a project. They're really nice but I would like to be DRYer. I have a page that displays a list of press coverage we've received and another which displays a list of articles we've published. On the overview page I need to display both lists. I would like to create a composite view which accepts both views and creates a context with both querysets attached.
feedback
|
|
Kenzic was able to accomplish this by doing the following: composite.py:
views.py:
| |||||
feedback
|
|
In my mind, a view is simply one page. A view can have several forms, which I think is a better solution in your example. Just split the template into several files, where each form have a small template, and use the template include directive to stitch it together. This also has the added advantage that the form can be reused in other views very simple. Your solution is basically like frames but on the server instead of in the browser. | |||
|
feedback
|
|
The simple way: Don't use a generic view and the paginator object manually on both queryset. It won't be that long, and it's not some lines that are going to kill your DRY IMO. The generic but long way: Create a view that wrap the init should instanciate both
Be sure to setup a different Do that in a generic way, and don't forget to pusblish you code on djangosnippet :-) | |||
|
feedback
|
|
May be you can override the get_context_data method to add additional data to the context?
and in your template you can get the press list and the article list using | ||||
|
feedback
|