14 lines
441 B
Python
14 lines
441 B
Python
|
from django.urls import path
|
||
|
# Here is importing the views which I modified
|
||
|
from . import views
|
||
|
app_name = 'polls'
|
||
|
urlpatterns = [
|
||
|
path('', views.index, name='index'),
|
||
|
# ex: /polls/5/
|
||
|
path('<int:question_id>/', views.detail, name='detail'),
|
||
|
# ex: /polls/5/results/
|
||
|
path('<int:question_id>/results/', views.results, name='results'),
|
||
|
# ex: /polls/5/vote/
|
||
|
path('<int:question_id>/vote/', views.vote, name='vote'),
|
||
|
]
|