7 lines
228 B
Python
7 lines
228 B
Python
|
from django.conf.urls.defaults import *
|
||
|
|
||
|
urlpatterns = patterns('django.views',
|
||
|
(r'^/?$', 'registration.passwords.password_reset', {'is_admin_site' : True}),
|
||
|
(r'^done/$', 'registration.passwords.password_reset_done'),
|
||
|
)
|