| 172 | | (r'^/articles/(?P\d{4})/$', 'myproject.news.views.articles.year_archive'), |
|---|
| 173 | | (r'^/articles/(?P\d{4})/(?P\d{2})/$', 'myproject.news.views.articles.month_archive'), |
|---|
| 174 | | (r'^/articles/(?P\d{4})/(?P\d{2})/$', 'myproject.news.views.articles.month_archive'), |
|---|
| 175 | | (r'^/articles/(?P\d{4})/(?P\d{2})/(?P\d+)/$', 'myproject.news.views.articles.article_detail'), |
|---|
| | 172 | (r'^/articles/(?P\d<year>{4})/$', 'myproject.news.views.articles.year_archive'), |
|---|
| | 173 | (r'^/articles/(?P\d<year>{4})/(?P\d<month>{2})/$', 'myproject.news.views.articles.month_archive'), |
|---|
| | 174 | (r'^/articles/(?P\d<year>{4})/(?P\d<month>{2})/$', 'myproject.news.views.articles.month_archive'), |
|---|
| | 175 | (r'^/articles/(?P\d<year>{4})/(?P\d<month>{2})/(?P<day>\d+)/$', 'myproject.news.views.articles.article_detail'), |
|---|