views: the profile view must be accessed as the delegate and not as the delegatee, fixes #3634

This commit is contained in:
Benjamin Dauvergne 2013-09-17 20:53:57 +02:00
parent 454a2b1ae3
commit c37a4e933a
1 changed files with 1 additions and 1 deletions

View File

@ -698,4 +698,4 @@ delegate = login_required(no_delegate(never_cache(profile_views.DelegateView.as_
password_change = sensitive_post_parameters()(never_cache(login_required(as_delegate(profile_views.PasswordChangeView.as_view()))))
profile = login_required(profile_views.FullProfileView.as_view())
profile = login_required(as_delegate(profile_views.FullProfileView.as_view()))