Re: CSRF missing token

2010-12-09 Thread martvefun
Hi Thank you it works well On 09-12-10 09:15, Ilian Iliev wrote: > Hi, > > you have to include the request context to use CSRF token. > > from django.template import RequestContext > > return render_to_response('index.html', locals(), context_instance = > RequestContext(request)) > > Greeting, >

Re: CSRF missing token

2010-12-09 Thread Ilian Iliev
Hi, you have to include the request context to use CSRF token. from django.template import RequestContext return render_to_response('index.html', locals(), context_instance = RequestContext(request)) Greeting, Ilian Iliev On Thu, Dec 9, 2010 at 2:08 AM, martvefun wrote: > Hello, > > I've a l