Skip to content

Instantly share code, notes, and snippets.

@yildirima
Created June 12, 2019 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yildirima/0b723c97edae2f3933740f3702b97097 to your computer and use it in GitHub Desktop.
Save yildirima/0b723c97edae2f3933740f3702b97097 to your computer and use it in GitHub Desktop.
from django.shortcuts import render
def error_404(request, exception):
data = {}
return render(request,'certman/404.html', data)
def error_500(request, exception):
data = {}
return render(request,'certman/500.html', data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment