Depends on what you have for your render_to_response. It's pretty good
practice (from what I can tell) to use something like this

Note that response is a dict that has my per view context variables in
it.

return render_to_response("myapp_super_cool_template.html", response,
context_instance=RequestContext(request))

For this to work you'll also have to have the following import:

from django.template import RequestContext

Matt


On Thu, 2010-02-18 at 10:29 -0800, Matthew Currier wrote:
> I am new to Django and loving it.  I am using v1.2 locally and have an
> issue with my first project from scratch:  The CSRF token is not being
> sent with my form post.  I have {% csrf_token %} inside the <form> tag
> and have verified that a csrf cookie does exist for the browser.
>  However, I get the error message that the post fails csrf
> validation.  I have attempted to follow the guidelines
> here: http://docs.djangoproject.com/en/dev/ref/contrib/csrf/, to no
> avail.  I do have the suggested middleware setup and the import for my
> views.py as described on that page.
> 
> 
> Is this something to do with my use of render_to_response?  Is this
> the preferred method to handle csrf security?  Thanks in advance for
> any reply.
> 
> 
> 
> 
> 
> -- 
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To post to this group, send email to django-us...@googlegroups.com.
> To unsubscribe from this group, send email to django-users
> +unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.



This message is confidential, intended only for the named recipient(s) and may 
contain information that is privileged or exempt from disclosure under law. If 
you are not the intended recipient(s), you are notified that the dissemination, 
distribution, or copying of this message is strictly prohibited, and that this 
message should be deleted from your system. The Free Lance-Star Publishing 
Company accepts no liability for the content of this message, or for the 
consequences of any actions taken on the basis of the information provided. If 
you receive this message in error, or are not the named recipient(s), please 
notify the sender and delete the document from your computer.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to