Начал доводить шаблоны под единый стиль

This commit is contained in:
Viner Abubakirov
2025-12-12 16:57:12 +05:00
parent 435a4bed0c
commit 9993fd5de6
11 changed files with 124 additions and 3 deletions

View File

@@ -122,6 +122,9 @@ USE_TZ = True
# https://docs.djangoproject.com/en/6.0/howto/static-files/
STATIC_URL = 'static/'
STATICFILES_DIRS = [
BASE_DIR / STATIC_URL
]
STORAGES = {
# default storage for user uploads

View File

@@ -19,5 +19,6 @@ from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('', include("music.urls")),
path('music/', include("music.urls")),
path('', include("core.urls")),
]