Skip to content

Instantly share code, notes, and snippets.

@solidpple
Created December 18, 2017 11:58
Show Gist options
  • Save solidpple/7bd6df72a69bb8dc8ee095eddbd8ddce to your computer and use it in GitHub Desktop.
Save solidpple/7bd6df72a69bb8dc8ee095eddbd8ddce to your computer and use it in GitHub Desktop.
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