Changeset 381
- Timestamp:
- 08/01/05 16:37:16 (3 years ago)
- Files:
-
- django/trunk/docs/overview.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/overview.txt
r380 r381 170 170 (r'^/articles/(?P<year>\d{4})/$', 'myproject.news.views.articles.year_archive'), 171 171 (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'myproject.news.views.articles.month_archive'), 172 (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P< day>\d+)/$', 'myproject.news.views.articles.article_detail'),172 (r'^/articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P<article_id>\d+)/$', 'myproject.news.views.articles.article_detail'), 173 173 ) 174 174
