mirror of
https://github.com/rjNemo/villafleurie
synced 2026-06-12 13:26:47 +00:00
fix error pages urls
This commit is contained in:
parent
f564740e51
commit
61e070aa9a
1 changed files with 2 additions and 2 deletions
|
|
@ -168,8 +168,8 @@ class About(TemplateView):
|
||||||
|
|
||||||
|
|
||||||
def handler404(request, exception):
|
def handler404(request, exception):
|
||||||
return render(request, 'store/404.html', status=404)
|
return render(request, 'rental/404.html', status=404)
|
||||||
|
|
||||||
|
|
||||||
def handler500(request):
|
def handler500(request):
|
||||||
return render(request, 'store/500.html', status=500)
|
return render(request, 'rental/500.html', status=500)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue