mirror of
https://github.com/Sosokker/ku-polls.git
synced 2025-12-19 05:24:05 +01:00
Update views of all pages and add HomeView (Homepage) + Update data of sqlite3 polls database
11 lines
251 B
Python
11 lines
251 B
Python
from django.contrib import admin
|
|
from django.urls import include, path
|
|
|
|
from polls.views import HomeView
|
|
|
|
urlpatterns = [
|
|
path('', HomeView.as_view(), name='home'),
|
|
path("polls/", include("polls.urls")),
|
|
path('admin/', admin.site.urls),
|
|
]
|