add err404 page (on /404) (not working, template file missing)

This commit is contained in:
2024-09-11 16:41:11 +02:00
parent 00e50bdefb
commit 3ce614625b
2 changed files with 5 additions and 1 deletions

View File

@ -87,3 +87,6 @@ def logout(request):
def handler404(request, exception):
return(index(request));
def err404(request):
return(render(request, "err404.html"))