2005-07-13 09:25:57 +08:00
|
|
|
from django.conf.urls.defaults import *
|
|
|
|
|
|
|
|
urlpatterns = patterns('django.views',
|
2005-08-06 06:15:14 +08:00
|
|
|
(r'^$', 'registration.passwords.password_reset', {'is_admin_site' : True}),
|
2005-07-13 09:25:57 +08:00
|
|
|
(r'^done/$', 'registration.passwords.password_reset_done'),
|
|
|
|
)
|