Created
December 18, 2017 11:58
-
-
Save solidpple/7bd6df72a69bb8dc8ee095eddbd8ddce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.urls import path | |
from . import views | |
app_name = 'polls' | |
urlpatterns = [ | |
path('', views.IndexView.as_view(), name='index'), | |
path('<int:pk>/', views.DetailView.as_view(), name='detail'), | |
path('<int:pk>/results/', views.ResultsView.as_view(), name='results'), | |
path('<int:question_id>/vote/', views.vote, name='vote'), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment