You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 270B

12345678910111213
  1. from django.shortcuts import render
  2. def handler403(request):
  3. return render(request, '403.html', status=403)
  4. def handler404(request):
  5. return render(request, '404.html', status=404)
  6. def handler500(request):
  7. return render(request, '500.html', status=500)