2025.09.14-18:02:28

This commit is contained in:
2025-09-14 18:02:28 +02:00
parent 565ef0cad1
commit ff37c9cd8b
32 changed files with 733 additions and 22 deletions

View File

@@ -18,6 +18,8 @@ from django.contrib import admin
from django.urls import path,include
from django.conf import settings
urlpatterns = [
path('',include("tinywiki.urls")),
path("user/",include("user.urls")),
path('admin/', admin.site.urls),
]
@@ -28,5 +30,5 @@ if settings.DEBUG:
*debug_toolbar_urls(),
*static(settings.STATIC_URL, document_root=settings.STATIC_ROOT),
*static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT),
path('__reload__/',include("django_browser_relaod.urls"))
path('__reload__/',include("django_browser_reload.urls"))
]