1
0
Fork 0

make naming consistent

This commit is contained in:
Hugh Rundle 2023-11-18 12:40:36 +11:00
parent d620bd7350
commit 8ddafafa84
No known key found for this signature in database
GPG key ID: A7E35779918253F9
3 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,8 @@
"""custom 403 handler to enable context processors"""
from django.template.response import TemplateResponse
def permission_denied(request, exception): # pylint: disable=unused-argument
"""permission denied page"""
return TemplateResponse(request, "403.html")