diff --git a/db.sqlite3 b/db.sqlite3 new file mode 100644 index 0000000..e69de29 diff --git a/w3cschool_demo/urls.py b/w3cschool_demo/urls.py index 75cfb96..9e20d8d 100644 --- a/w3cschool_demo/urls.py +++ b/w3cschool_demo/urls.py @@ -14,8 +14,9 @@ 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 urlpatterns = [ path('admin/', admin.site.urls), + path('polls/', include('polls.urls')), ]