WIP: Move to Jinja2

This commit is contained in:
Skia
2016-02-01 17:35:55 +01:00
parent abb8dc0c5e
commit 03bc0973fe
38 changed files with 261 additions and 217 deletions

View File

@ -7,10 +7,10 @@ from django.views.generic.base import View
from core.models import Group
def forbidden(request):
return render(request, "core/403.html")
return render(request, "core/403.jinja")
def not_found(request):
return render(request, "core/404.html")
return render(request, "core/404.jinja")
class CanEditPropMixin(View):