summaryrefslogtreecommitdiff
path: root/nop/urls.py
diff options
context:
space:
mode:
authorJohannes Raggam <raggam-nl@adm.at>2011-05-10 15:50:39 (GMT)
committerJohannes Raggam <raggam-nl@adm.at>2011-05-10 15:50:39 (GMT)
commita351418394efd238daf89502fe3e8fd2c8bbe153 (patch)
treef397928ce3ff5f1f5912c65dde493763b937cf1f /nop/urls.py
parente564b923dfcb7a65df89f39297ef0ca3dc5e09a0 (diff)
add nop initial app
Diffstat (limited to 'nop/urls.py')
-rw-r--r--nop/urls.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/nop/urls.py b/nop/urls.py
new file mode 100644
index 0000000..a4700cf
--- /dev/null
+++ b/nop/urls.py
@@ -0,0 +1,7 @@
+from django.conf.urls.defaults import patterns, url
+from views import get, get_current
+
+urlpatterns = patterns('',
+ url(r'^$', get_current),
+ url(r'^(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<hour>\d{1,2})/(?P<minute>\d{1,2})/?$', get),
+)