datatracker/ietf/ietfauth/urls.py
Henrik Levkowetz cd030d3b43 Adding copyright notices to all python files
- Legacy-Id: 716
2007-06-27 21:16:34 +00:00

24 lines
771 B
Python

# Copyright The IETF Trust 2007, All Rights Reserved
from django.conf.urls.defaults import patterns
from ietf.my.views import my
urlpatterns = patterns('django.contrib.auth.views',
(r'^login/$', 'login'),
# need to provide templates for logout, password_change,
# password_change_done
# right now they use the admin templates, which are not
# really appropriate.
(r'^logout/$', 'logout'),
(r'^password_change/$', 'password_change'),
(r'^password_change/done/$', 'password_change_done'),
# Built-in password reset changes before validation
# so we want to implement a scheme similar to henrik's
# loginmgr.
#(r'^password_reset/$', 'password_reset'),
#(r'^password_reset/done/$', 'password_reset_done'),
)
urlpatterns += patterns('',
(r'^profile/$', my)
)