There is urls.py pattern.
url(r'^notice/(?P<article>[0-9]\d+)/', web.views.notice),
Here is views.py
def notice(request, article):
data = article
return render(request, "notice.html")
However, web brower shows 404 Error. If I remove add parameter, it is ok.
What I am wrong?
Intended result (Blog style, not get parameter) /notice/1, /notice/2, ...
article? Is it a digit from 0 to 9?