diff options
Diffstat (limited to 'urls.py')
| -rw-r--r-- | urls.py | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,9 +1,8 @@ # This also imports the include function from django.conf.urls.defaults import * -from nordunet_change_password import * urlpatterns = patterns('apps.changepw.views', url(r'^/$', 'index', name='index'), - url(r'^/changepw$', change_password(request, change_nordunet_sso_pw), name='changepw'), - url(r'^/changeppp$', reset_password(request, reset_nordunet_ppp_pw), name='resetpw'), + url(r'^/changepw$', 'change_password', name='changepw'), + url(r'^/changeppp$', 'reset_password', name='resetpw'), ) |
