expephalon-demomodule/core/views/__init__.py
Kumi 7708128255 Finally got all the OTP stuff working
Finalized dbsettings views
Easter egg for missing backend pages
2020-04-15 22:19:03 +02:00

17 lines
526 B
Python

from django.shortcuts import render
from django.views.generic import TemplateView
from django.conf import settings
from core.views.dbsettings import *
from core.views.auth import *
# Create your views here.
class IndexView(TemplateView):
template_name = f"{settings.EXPEPHALON_FRONTEND}/index.html"
class DashboardView(TemplateView):
template_name = f"{settings.EXPEPHALON_BACKEND}/index.html"
class BackendNotImplementedView(TemplateView):
template_name = f"{settings.EXPEPHALON_BACKEND}/notimplemented.html"