Some more work towards having a working news module. This isn't anywhere near ready yet!

This commit is contained in:
Greg Taylor 2007-06-12 03:37:22 +00:00
parent 115a420cee
commit ebb145654f
4 changed files with 27 additions and 47 deletions

View file

@ -1,6 +1,6 @@
from django.conf.urls.defaults import *
urlpatterns = patterns('apps.news.views',
# (r'^news/show/(?P<entry_id>\d+)/$', 'show_news'),
(r'^show/(?P<entry_id>\d+)/$', 'show_news'),
# (r'^news/categories/list/$', 'recent_kills'),
)