summaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
authorJohan Lundberg <lundberg@nordu.net>2011-01-26 09:27:29 +0100
committerJohan Lundberg <lundberg@nordu.net>2011-01-26 09:27:29 +0100
commit0d9f0270b46146b9701a21dfc344ff91d0dba603 (patch)
treed6b6fc790ba53fc73fb1131e9dc5bcbe40387b84 /urls.py
Initial commit.
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/urls.py b/urls.py
new file mode 100644
index 0000000..eb64d93
--- /dev/null
+++ b/urls.py
@@ -0,0 +1,6 @@
+# This also imports the include function
+from django.conf.urls.defaults import *
+
+urlpatterns = patterns('changepw.views',
+ (r'^$', 'change_password'),
+)