mirror of
https://github.com/Sosokker/ku-polls.git
synced 2025-12-19 21:44:06 +01:00
13 lines
411 B
Python
13 lines
411 B
Python
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"),
|
|
path("signup/", views.SignUpView.as_view(), name="signup"),
|
|
]
|