Removed 'change password' link next to the current user's name and added a few view to handle the current user's password, details and editing

This commit is contained in:
Roberto Rosario
2011-06-16 15:14:05 -04:00
parent e6fad805c7
commit af59b3a7cd
5 changed files with 81 additions and 4 deletions

View File

@@ -7,6 +7,9 @@ urlpatterns = patterns('common.views',
url(r'^about/$', direct_to_template, {'template': 'about.html'}, 'about'),
url(r'^password/change/done/$', 'password_change_done', (), name='password_change_done'),
url(r'^object/multiple/action/$', 'multi_object_action_view', (), name='multi_object_action_view'),
url(r'^user/$', 'current_user_details', (), 'current_user_details'),
url(r'^user/edit/$', 'current_user_edit', (), 'current_user_edit'),
)
urlpatterns += patterns('',