aboutsummaryrefslogtreecommitdiffstats
path: root/opus/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'opus/urls.py')
-rw-r--r--opus/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/opus/urls.py b/opus/urls.py
index 75e20ee..8e08467 100644
--- a/opus/urls.py
+++ b/opus/urls.py
@@ -25,8 +25,9 @@ urlpatterns = patterns('',
url(r'^notes/$', 'notes.views.index'),
url(r'^notes/tag/(\d+)/$', 'notes.views.index'),
-
+
url(r'^notes/(\d+)/$', 'notes.views.view'),
url(r'^notes/new/$', 'notes.views.edit'),
url(r'^notes/(\d+)/edit/$', 'notes.views.edit'),
+ url(r'^notes/(\d+)/file/(\d+)/$', 'notes.views.view_file'),
)