tags:

views:

51

answers:

1

Have you used django-proxy? Can you give me an example of when it would be a good idea to use it? Thanks.

+1  A: 

The blog engine Mingus, which I use for my blog, includes django-proxy to allow you to post items of different content types - blog posts, quotes, etc - but have them all appear on the index page in a similar format.

In response to Hank's comment, this is a completely different thing to 'proxy models' - those are for subclassing a model without creating a new table, in order to change some specific functionality rather than any actual fields. This has nothing to do with what django-proxy does.

Daniel Roseman
Umm... like generics objects?
panchicore