fix a few major permission holes

This commit is contained in:
Ross
2023-12-04 12:19:52 +00:00
parent f346a69bb5
commit 976f57ac20
14 changed files with 77 additions and 36 deletions
+2 -1
View File
@@ -519,7 +519,8 @@ def page_not_found(request, exception):
def page_forbidden(request, exception):
response = render(request, "403.html")
response = render(request, "403.html", context={"exception": exception})
response.status_code = 403