summaryrefslogtreecommitdiff
path: root/urls.py
blob: 8d38e88aa08efd48808c0c4021bf4a5dc7e16028 (plain)
1
2
3
4
5
6
7
8
9
10
# This also imports the include function
from django.conf.urls.defaults import *

urlpatterns = patterns('apps.changepw.views',
    url(r'^/$', 'index', name='index'),
    url(r'^/changepw/(?P<pwtype>[-\w]+)$', 'change_password', name='changepw'),
    url(r'^/resetpw/(?P<pwtype>[-\w]+)$', 'reset_password', name='resetpw'),
    url(r'^/changeother$', 'change_other', name='changeother'),
    url(r'^/changeother/[-\w]+$', 'change_other'),
)