I\'m doing wiki in django tutorial and in tutorial earlier version of django is used where csrf token is not compulsory. I\'ve added {% csrf_token %} to the form, however I\'m n
You haven't quite understood step 3 here: you need to use RequestContext to ensure that the context processor is run.
return render_to_response("edit.html", {"page_name" : page_name,
"content" : content},
context_instance=RequestContext(request))
With that, you don't need the c.update(csrf(request))
bit.