I have one project with two apps.
I want to show a homepage that pulls in the two apps as homepage
widgets.
I tried the following approach...
urlpatterns = patterns('',
(r'^$', 'myproj.app1.views.index'),
(r'^$', 'myproj.app2.views.index'),
...
...but what ended up happening is that only the block for app1 updated
in the base.html. Obviously I am not getting something fundamental
here. Please help! What I want to do seems like such a simple
thing. I've got each app widget working independently in my localhost/
app1 and localhost/app2 urls, but I can't seem to figure out how to
put both widgets in the same page to save my life.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---