Move from HTML templates to pure Python
Remove cruft
This commit is contained in:
@@ -40,7 +40,6 @@ INSTALLED_APPS = [
|
||||
"django.contrib.staticfiles",
|
||||
"template_partials",
|
||||
"django_htmx",
|
||||
"django_cotton",
|
||||
"django_q",
|
||||
]
|
||||
|
||||
|
||||
+2
-1
@@ -21,11 +21,12 @@ from django.urls import include, path
|
||||
from django.views.generic import RedirectView
|
||||
|
||||
from games.api import api
|
||||
from games.views.auth import LoginView
|
||||
|
||||
urlpatterns = [
|
||||
path("", RedirectView.as_view(url="/tracker")),
|
||||
path("api/", api.urls),
|
||||
path("login/", auth_views.LoginView.as_view(), name="login"),
|
||||
path("login/", LoginView.as_view(), name="login"),
|
||||
path("logout/", auth_views.LogoutView.as_view(), name="logout"),
|
||||
path("tracker/", include("games.urls")),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user