Commit 40e7df8a by Fábián János

Add request to render as parameter

parent 23c66698
...@@ -45,10 +45,10 @@ def handler500(request): ...@@ -45,10 +45,10 @@ def handler500(request):
logger.exception("unhandled exception") logger.exception("unhandled exception")
ctx = get_context(request, exception) ctx = get_context(request, exception)
try: try:
resp = render("500.html", ctx, resp = render(request,"500.html", ctx,
RequestContext(request).flatten()) RequestContext(request).flatten())
except: except:
resp = render("500.html", ctx) resp = render(request,"500.html", ctx)
resp.status_code = 500 resp.status_code = 500
return resp return resp
...@@ -56,6 +56,6 @@ def handler500(request): ...@@ -56,6 +56,6 @@ def handler500(request):
def handler403(request, *args, **argv): def handler403(request, *args, **argv):
cls, exception, traceback = exc_info() cls, exception, traceback = exc_info()
ctx = get_context(request, exception) ctx = get_context(request, exception)
resp = render("403.html", ctx) resp = render(request,"403.html", ctx)
resp.status_code = 403 resp.status_code = 403
return resp(request) return resp
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment