from django.urls import path, re_path from app01 import views urlpatterns = [ re_path(r'^list/(?P<year>\d{4})/$', views.article_list), ].
確定! 回上一頁