diff options
author | luxagraf <sng@luxagraf.net> | 2015-11-08 21:25:13 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2015-11-08 21:25:13 -0500 |
commit | b588a5587c1f9a809509b77b11f4827c6c28f951 (patch) | |
tree | 68f7870ca61f7cad440ac5c1dbb48aac7d4cf139 /config | |
parent | 7e8fefe7f3c5aee31c4e7231e5fed21d34ed0cb6 (diff) |
ported expense app to CBVs and cleaner url scheme. Added build script
and new model to track trips because I'm ambitious like that.
Diffstat (limited to 'config')
-rw-r--r-- | config/base_urls.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/base_urls.py b/config/base_urls.py index e5aa79d..7ba9196 100644 --- a/config/base_urls.py +++ b/config/base_urls.py @@ -52,7 +52,10 @@ urlpatterns += patterns('', ), (r'^projects/', include('projects.urls')), (r'^locations/', include('locations.urls')), - (r'^expenses/', include('expenses.urls')), + url( + regex=r'^expenses/', + view=include('expenses.urls', namespace='expenses') + ), (r'^photos/', include('photos.urls')), url( regex=r'^books/', |