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.
12 lines
349 B
12 lines
349 B
from django.urls import path
|
|
from django.views.generic import TemplateView
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("", views.login), # NORMAL login - NUR FÜR DEV TIME
|
|
path("login", views.login),
|
|
path("home/", views.home),
|
|
path('offline/', TemplateView.as_view(template_name="offline.html")),
|
|
path("install/", views.install)
|
|
]
|