| 106 | | (r'^/articles/2003/$', 'news.views.special_case_2003'), |
|---|
| 107 | | (r'^/articles/(?P<year>\d{4})/$', 'news.views.year_archive'), |
|---|
| 108 | | (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'news.views.month_archive'), |
|---|
| 109 | | (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d+)/$', 'news.views.article_detail'), |
|---|
| | 106 | (r'^articles/2003/$', 'news.views.special_case_2003'), |
|---|
| | 107 | (r'^articles/(?P<year>\d{4})/$', 'news.views.year_archive'), |
|---|
| | 108 | (r'^articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'news.views.month_archive'), |
|---|
| | 109 | (r'^articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d+)/$', 'news.views.article_detail'), |
|---|