Re: Architecture with multiple applications, context processors, utility methods

2009-10-06 Thread davisd
Daniel, Thanks for your reply. I believe template tags are part of the answer, namely in the example I gave below about the "Ads". They can grab some context right from the template, call functions from the app, etc. But they can't "pass data" to themselves... And the tag has to be hard-coded

Re: Architecture with multiple applications, context processors, utility methods

2009-10-05 Thread Daniel Roseman
On Oct 5, 9:58 pm, davisd wrote: > I have a question concerning django architecture with multiple > applications and combined views. > > A View accepts an HttpRequest and returns an HttpResponse. > > The flow for a view is: HttpRequest in from the visitor -> process -> > HttpResponse out to visit

Architecture with multiple applications, context processors, utility methods

2009-10-05 Thread davisd
I have a question concerning django architecture with multiple applications and combined views. A View accepts an HttpRequest and returns an HttpResponse. The flow for a view is: HttpRequest in from the visitor -> process -> HttpResponse out to visitor. Assuming my end result is a page on the v