diff --git a/src/authentic2/manager/user_views.py b/src/authentic2/manager/user_views.py index 1f7891663..2dac4689b 100644 --- a/src/authentic2/manager/user_views.py +++ b/src/authentic2/manager/user_views.py @@ -564,12 +564,13 @@ class UsersExportProgressView(MediaMixin, TemplateView): users_export_progress = UsersExportProgressView.as_view() -class UserChangePasswordView(BaseEditView): +class UserChangePasswordView(ActionMixin, BaseEditView): template_name = 'authentic2/manager/form.html' model = get_user_model() form_class = UserChangePasswordForm permissions = ['custom_user.change_password_user'] title = _('Change user password') + action = _('Submit') success_url = '..' slug_field = 'uuid'