Re: Combining multiple Django applications.

2008-12-13 Thread Adam Fast
That type of system is usually called a "Tumblelog" - and you can find a lot of info in these two articles below. Ryan's uses generic foreign keys and an "intermediary" object, so to speak, so that you just query that one object and it knows about all instances of your app1/app2/app3 models. This

Combining multiple Django applications.

2008-12-10 Thread davidc
Hi, I'm new to Django and am after some advice :) I have a variety of applications in my project, each with different data models, that exist at /app1 /app2 /app3 etc. Each of them contains a 'newsfeed' style index page with a series of entries and comments, but the format of the entries differs