mirror of
https://github.com/rjNemo/villafleurie
synced 2026-06-12 13:26:47 +00:00
9 lines
217 B
Python
9 lines
217 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def handler404(request, exception):
|
|
return render(request, 'rental/404.html', status=404)
|
|
|
|
|
|
def handler500(request):
|
|
return render(request, 'rental/500.html', status=500)
|