diff options
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | bn_django/urls.py | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..354894d --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +photos +media +code +*.pyc +*.pyo 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')), ) |