diff options
Diffstat (limited to 'archive/urls.py')
-rw-r--r-- | archive/urls.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/archive/urls.py b/archive/urls.py new file mode 100644 index 0000000..8657fed --- /dev/null +++ b/archive/urls.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- +# +# urls.py for app 'page' +# + +from django.conf.urls import patterns, include, url + +from archive.views import ArchiveView + + +urlpatterns = patterns('', + # notice list view + url(r'^archive/all$', ArchiveView.as_view(), + name='archive_all'), +) + |