aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/urls.py
diff options
context:
space:
mode:
authorbnewbold <bnewbold@manus.(none)>2007-03-24 17:31:00 -0700
committerbnewbold <bnewbold@manus.(none)>2007-03-24 17:31:00 -0700
commit90813f3137b05b428af31fe782dfe54a0af668c1 (patch)
tree319652245404c371fcb9a8585b0ac95980754736 /bn_django/urls.py
parentdb2d7a378c493c0beaafeb606f34bfab0e9ec8f7 (diff)
downloadbnewnet-90813f3137b05b428af31fe782dfe54a0af668c1.tar.gz
bnewnet-90813f3137b05b428af31fe782dfe54a0af668c1.zip
added search boilerplate
Diffstat (limited to 'bn_django/urls.py')
-rw-r--r--bn_django/urls.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bn_django/urls.py b/bn_django/urls.py
index eaf991e..08986f1 100644
--- a/bn_django/urls.py
+++ b/bn_django/urls.py
@@ -22,13 +22,15 @@ urlpatterns = patterns('',
{'template': 'credits.html'}),
(r'^copyright/$', 'django.views.generic.simple.direct_to_template',
{'template': 'copyright.html'}),
+ (r'^search/$', 'django.views.generic.simple.direct_to_template',
+ {'template': 'search.html'}),
(r'^knowledge/$', 'bn_django.git_wiki.views.frontpage',),
(r'^k/', include('bn_django.git_wiki.urls')),
(r'^code/', include('bn_django.git_browse.urls')),
(r'^photos/', include('bn_django.photos.urls')),
- (r'^search/', include('bn_django.search.urls')),
+ #(r'^search/', include('bn_django.search.urls')),
# Uncomment this for admin:
(r'^admin/', include('django.contrib.admin.urls')),