Django 03

https://docs.djangoproject.com/en/4.1/intro/tutorial03/

from django.urls import path

from . import views

app_name='polls'

urlpatterns = [
    path('',views.index,name='index'),

    path('<int:question_id>/',views.detail,name='detail'),

    path('<int:question_id>/results/',views.results,name='results'),

    path('<int:question_id>/vote/',views.vote,name='vote'),
]

todo https://docs.djangoproject.com/en/4.1/intro/tutorial04/

posted @ 2023-01-04 18:36  ukyo--碳水化合物  阅读(20)  评论(0)    收藏  举报