second commit

This commit is contained in:
2026-04-13 23:14:05 +02:00
parent 1c031ebf63
commit e08597fc72
125 changed files with 26221 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#
# encoding: utf-8
from django.shortcuts import render
def handler404(request, *args, **argv):
return render(request, 'inc/404.html', status=404)
def handler500(request, *args, **argv):
return render(request, 'inc/500.html', status=500)