diff options
author | luxagraf <sng@luxagraf.net> | 2014-06-08 19:52:11 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2014-06-08 19:52:11 -0400 |
commit | e69f7da0dc610528b19fa868f273ca4089b0f7fb (patch) | |
tree | 3af0206e56b98e9a90130726d43b786a00c7c3dc /config | |
parent | 1c2c28270911dbd2e5fbf106edcce6cc5f053101 (diff) |
finished up notes app. still need to design and test, but it more or
less works.
Diffstat (limited to 'config')
-rw-r--r-- | config/base_urls.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index 9cd4c5f..dd3ca2e 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -48,10 +48,11 @@ urlpatterns += patterns('', (r'^writing/', include('blog.urls')), (r'^projects/', include('projects.urls')), #Entry detail i.e. /year/month/day/my-title/ - (r'(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$', 'blog.views.entry_detail'), + (r'(?P<year>\d{4})/(?P<month>[a-z]{3})/(?P<day>\w{1,2})/(?P<slug>[-\w]+)/$', 'blog.views.entry_detail'), # locations (r'^locations/', include('locations.urls')), (r'^photos/', include('photos.urls')), + (r'^notes/', include('notes.urls')), (r'^photo/', include('photos.detail_urls')), (r'^travel-guide/', include('guide.urls')), # map |