On 5/23/07, Michael Lake <[EMAIL PROTECTED]> wrote:
...
>      return render_to_response('lab/user.html', data)

Yeah, that's your problem right there.

You want this:

from django.template import RequestContext
ctx = RequestContext(request)
return render_to_response('lab/user.html', context_instance=ctx)

(Style note, you want your imports at the top of the file or callable,
but included just before use here for clarity)

... I imagine this bites a lot of people on the ass.  :(

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to