Still trying to get my brain around how Django works...

How do I put multiple apps on one page/template?

Explanation:
I have my base.html template, different parts of the page need to be fed data from different apps (app1, app2, etc.) The apps are independent and don't (shouldn't) know anything about one another. The template has blocks/variables to grab the data from each app.

Issue:
The urlpatterns all seem to be geared around a one-one (url->view) model. The associated template can inherit from others that have additional things on them but how do I get the views for those other apps to run?

Hope that made some sense.

Thanks,
Michael

Reply via email to