# 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$', 'change_password', name='changepw'), url(r'^/resetpw$', 'reset_password', name='resetpw'), url(r'^/changeother$', 'change_other', name='changeother'), url(r'^/changeother/[-\w]+$', 'change_other'), )