Сделал Плейлист и добавил рекомендацию на главную страницу

This commit is contained in:
Viner Abubakirov
2026-01-06 16:44:15 +05:00
parent 2e63f86484
commit 1df341006c
6 changed files with 136 additions and 10 deletions

View File

@@ -1,11 +1,10 @@
from django.urls import path
from core.views import index, sentry_debug
from core.views import IndexView
app_name = "index"
urlpatterns = [
path("", index, name="main_index"),
path("sentry-debug/", sentry_debug, name="sentry_debug"),
path("", IndexView.as_view(), name="main_index"),
]