добавил всего по мелочи, отредактировал urls, добавил файлы библиотеки Chart.js
This commit is contained in:
@@ -15,8 +15,14 @@ Including another URLconf
|
||||
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
||||
"""
|
||||
from django.contrib import admin
|
||||
from django.urls import path
|
||||
from django.urls import path, include
|
||||
|
||||
from django.contrib.staticfiles.views import serve
|
||||
|
||||
import index.urls
|
||||
|
||||
urlpatterns = [
|
||||
path('', include('index.urls')),
|
||||
path('admin/', admin.site.urls),
|
||||
path('favicon.ico', lambda req: serve(req, 'favicon.svg'))
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user