diff options
| author | Johan Lundberg <lundberg@nordu.net> | 2011-02-01 14:32:11 +0100 |
|---|---|---|
| committer | Johan Lundberg <lundberg@betafoo.nordu.net> | 2011-02-01 14:33:26 +0100 |
| commit | 1c7bea1c752b7cb9b258230d16006a17b2ed1f8d (patch) | |
| tree | bb5f28aaf9e7efc855d1839c582841139e271504 /urls.py | |
| parent | f5b076151f4f7021a3842b41ba374c8dd65f6c85 (diff) | |
Added url names and use url reverse.
Diffstat (limited to 'urls.py')
| -rw-r--r-- | urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ # This also imports the include function from django.conf.urls.defaults import * -urlpatterns = patterns('changepw.views', - (r'^$', 'change_password'), +urlpatterns = patterns('apps.changepw.views', + url(r'^/$', 'change_password', name='changepw'), ) |
