From 77bea516c864aedea24811b0a5e099bdcbbbf929 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Sun, 1 Feb 2009 03:57:22 -0800 Subject: urls ommission, forgot return syntax --- bn_django/urls.py.example | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'bn_django/urls.py.example') diff --git a/bn_django/urls.py.example b/bn_django/urls.py.example index aa9e079..c175624 100644 --- a/bn_django/urls.py.example +++ b/bn_django/urls.py.example @@ -40,6 +40,11 @@ urlpatterns = patterns('', (r'^admin/(.*)', admin.site.root), (r'^comments/', include('django.contrib.comments.urls')), + (r'^journal/', include('bn_django.journal.urls')), + (r'^artifacts/$', 'django.views.generic.simple.direct_to_template', + {'template': 'journal/artifacts.html'}), + (r'^artifacts/', include('bn_django.journal.artifact_urls')), + # uncomment for development #(r'^static/(?P.*)$', 'django.views.static.serve', # {'document_root': '/home/bnewbold/code/bn-project/static', -- cgit v1.2.3