Splitting web stuff off into a separate apps directory. This stuff will end up being replaced/re-written, it's ancient and really badly done.
This commit is contained in:
parent
75b39ada13
commit
ed1510c4a7
12 changed files with 23 additions and 23 deletions
8
webapps/news/urls.py
Executable file
8
webapps/news/urls.py
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
from django.conf.urls.defaults import *
|
||||
|
||||
urlpatterns = patterns('webapps.news.views',
|
||||
(r'^show/(?P<entry_id>\d+)/$', 'show_news'),
|
||||
(r'^archive/$', 'news_archive'),
|
||||
(r'^search/$', 'search_form'),
|
||||
(r'^search/results/$', 'search_results'),
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue