Mercurial > public > sg101
diff news/urls.py @ 1140:97f92a589de7
Work in progress converting news to V3 design.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 31 Oct 2016 20:39:21 -0500 |
parents | 5ba2508939f7 |
children |
line wrap: on
line diff
--- a/news/urls.py Thu Oct 27 19:47:20 2016 -0500 +++ b/news/urls.py Mon Oct 31 20:39:21 2016 -0500 @@ -13,7 +13,7 @@ url(r'^categories/$', news.views.category_index, name='news-category_index'), url(r'^category/(?P<slug>[\w\d-]+)/$', news.views.category, name='news-category'), url(r'^email/(\d+)/$', news.views.email_story, name='news-email_story'), - url(r'^email/thanks/$', news.views.email_thanks, name='news-email_thanks'), + url(r'^email/(\d+)/thanks/$', news.views.email_thanks, name='news-email_thanks'), url(r'^story/(\d+)/$', news.views.story, name='news-story'), url(r'^submit/$', news.views.submit, name='news-submit'), url(r'^submit/thanks/$', news.views.submit_thanks, name='news-submit_thanks'),