summaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
authorJohan Lundberg <lundberg@nordu.net>2011-05-25 11:34:30 +0200
committerJohan Lundberg <lundberg@nordu.net>2011-05-25 11:34:30 +0200
commita3f00bfc357b07d67f42a4234fa491623b004689 (patch)
treea8141f0128b32daf05c613ec299d40aea15da2e6 /urls.py
parent886180ff618f9ee6ec62e13faba63c05a7c52118 (diff)
Added *args to change_other. Changed default lenght of reset password to 10.
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/urls.py b/urls.py
index 8ac6782..2674519 100644
--- a/urls.py
+++ b/urls.py
@@ -6,4 +6,5 @@ urlpatterns = patterns('apps.changepw.views',
url(r'^/changepw$', 'change_password', name='changepw'),
url(r'^/resetpw$', 'reset_password', name='resetpw'),
url(r'^/changeother$', 'change_other', name='changeother'),
+ url(r'^/[-\w]+$', 'change_other'),
)