Magic - it worked a treat by adding `from django.template import
RequestContext` and adding `context_instance=RequestContext(request)` to the
render_to_response call.

Cheers for your help

Kevin 

-----Original Message-----
From: django-users@googlegroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of Jay Parlar
Sent: 23 June 2006 22:42
To: django-users@googlegroups.com
Subject: Re: Anonymous Users/Session in Template


On 6/23/06, Kevin Fullerton <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I've got 'django.contrib.sessions' and 'django.contrib.auth' in my 
> INSTALLED_APPS, and 'django.contrib.sessions.middleware.SessionMiddleware'
> in MIDDLEWARE_CLASSES
>
> I'm running from the svn version of django which is up to date.
>
> I'm using render_to_response from django.shortcuts for processing and 
> returning the templates at the moment - I saw the detail about using 
> the RequestContext but I don't think it works with render_to_response 
> so I may have to look at using Contexts and Loaders for processing and 
> returning the templates.
>

They work fine together, I do stuff like this all the time:

            form = forms.FormWrapper(manipulator, validation_data, errors)
            return render_to_response('firmware/upload.html', {'form':form},
 
context_instance=RequestContext(request))


Jay P.




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

Reply via email to