According to the docs at http://docs.djangoproject.com/en/dev/topics/http/shortcuts/#render-to-response the render_to_response shortcut "Renders a given template with a given context dictionary and returns an HttpResponse object with that rendered text."
The HttpResponse object have a default status=200 (http:// docs.djangoproject.com/en/dev/ref/request-response/#id3) How can I use the render_to_response to return HTTP status codes other than 200? Can render_to_response return HttpResponse subclasses like HttpResponseRedirect, HttpResponseForbidden etc instead of the simple HttpResponse? -- 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.