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 168B

123456789
  1. from django.shortcuts import render
  2. def handler404(request):
  3. return render(request, '404.html')
  4. def handler500(request):
  5. return render(request, '500.html')