ungleich-learning-circle/pedro/django-tutorial/mysite/polls/urls.py

18 lines
481 B
Python

from django.urls import path
from . import views
# namespacing URLs
app_name = 'polls'
urlpatterns = [
# ex: /polls/
#path('', views.index, name='index'),
path('', views.IndexView.as_view(), name='index'),
# ex: /polls/5/
path('<int:pk>/', views.DetailView.as_view(), name='detail'),
# ex: /polls/5/results/
path('<int:pk>/results/', views.ResultsView.as_view(), name='results'),
# ex: /polls/5/vote/
path('<int:question_id>/vote/', views.vote, name='vote'),
]