Some changes from Pi

This commit is contained in:
2022-07-10 14:45:21 +03:00
parent 92753905f4
commit a8f86ef882
3 changed files with 10 additions and 2 deletions
+3 -1
View File
@@ -15,8 +15,10 @@ Including another URLconf
"""
from django.contrib import admin
from django.urls import include, path
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('faerun_calendar.urls')),
]
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)