port to new django, AI automated

This commit is contained in:
2026-03-30 22:35:36 +02:00
parent e2d166e437
commit 372da3caa9
215 changed files with 9283 additions and 2981 deletions

View File

@@ -1,7 +1,9 @@
from django.conf.urls import url
from django.urls import path
from website.views import home_view
from . import views
app_name = "website"
urlpatterns = [
url(r'$^', home_view),
path("", views.home_view, name="home"),
]