diff options
Diffstat (limited to 'pyc/urls.py')
-rw-r--r-- | pyc/urls.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pyc/urls.py b/pyc/urls.py index 8132990..eaa5026 100644 --- a/pyc/urls.py +++ b/pyc/urls.py @@ -10,6 +10,8 @@ urlpatterns = patterns('', url(r'^login/$', 'django.contrib.auth.views.login', {'template_name': 'login.html'}), url(r'^logout/$', 'django.contrib.auth.views.logout', {'next_page': '/'}), + url(r'^password/$', 'django.contrib.auth.views.password_change', {'template_name': 'password.html', 'post_change_redirect': '/password_changed'}), + url(r'^password_changed/$', 'grader.views.password_changed'), # Uncomment the admin/doc line below to enable admin documentation: # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), |