On 9/5/07, Atendo <[EMAIL PROTECTED]> wrote: > urlpatterns = patterns('', > (r'^$', 'myproj.app1.views.index'), > (r'^$', 'myproj.app2.views.index'),
This won't work because you only get one view function per URL; the same URL can't simultaneously route to multiple different views. Generally there are two common approaches to a home page: 1. One type of content dominates, and others are incidental (e.g., display in a sidebar or footer) 2. The home page is more of a "portal" which needs to pull in many different things. In the first case, your best bet is to write a view which fetches the "dominant" type of content, and use template tags to pull out the "incidental" ones (shameless plug: I've written a set of generic template tags designed for precisely this purpose[1]). A generic view is also an option here and saves you writing a little code. In the second case, you'll want to write a view which fetches all the various bits of content you want and passes them to the template en masse; if you want some customizability for users, you might have your view check session variables or a profile model to determine the user's preference and figure out which content to display. [1] http://code.google.com/p/django-template-utils/ -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---