diff options
Diffstat (limited to 'bn_django')
-rw-r--r-- | bn_django/urls.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bn_django/urls.py b/bn_django/urls.py index 11c8530..35b9796 100644 --- a/bn_django/urls.py +++ b/bn_django/urls.py @@ -3,7 +3,10 @@ from django.conf.urls.defaults import * urlpatterns = patterns('', # Example: # (r'^bn_django/', include('bn_django.foo.urls')), + (r'^knowledge/', include('bn_django.bn_wiki.urls')), + (r'^code/', include('bn_django.code_browser.urls')), + (r'^photos/', include('bn_django.photo_gallery.urls')), # Uncomment this for admin: -# (r'^admin/', include('django.contrib.admin.urls')), + (r'^admin/', include('django.contrib.admin.urls')), ) |