I fixed the problem by having each view pass context, request and template data to a Main() view.
def Main(request, context, template): # Main does what it has to do with the request information (login info, search strings, session vars...) return render_to_response(context, template) (This is from the top of my head, I don't remember the exact variables render_to_response demands). I feel I have more control over what each view does, and it standardises the whole application a lot more as well. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---