mirror of https://gitlab.crans.org/bde/nk20
Don't see user detail in update form
This commit is contained in:
parent
0e7390b669
commit
051591cb7a
|
@ -70,10 +70,11 @@ class UserUpdateView(ProtectQuerysetMixin, LoginRequiredMixin, UpdateView):
|
||||||
form.fields['email'].required = True
|
form.fields['email'].required = True
|
||||||
form.fields['email'].help_text = _("This address must be valid.")
|
form.fields['email'].help_text = _("This address must be valid.")
|
||||||
|
|
||||||
context['profile_form'] = self.profile_form(instance=context['user_object'].profile,
|
if PermissionBackend.check_perm(self.request.user, "member.change_profile", context['user_object'].profile):
|
||||||
data=self.request.POST if self.request.POST else None)
|
context['profile_form'] = self.profile_form(instance=context['user_object'].profile,
|
||||||
if not self.object.profile.report_frequency:
|
data=self.request.POST if self.request.POST else None)
|
||||||
del context['profile_form'].fields["last_report"]
|
if not self.object.profile.report_frequency:
|
||||||
|
del context['profile_form'].fields["last_report"]
|
||||||
|
|
||||||
return context
|
return context
|
||||||
|
|
||||||
|
|
|
@ -51,8 +51,10 @@ class ProtectQuerysetMixin:
|
||||||
# No worry if the user change the hidden fields: a 403 error will be performed if the user tries to make
|
# No worry if the user change the hidden fields: a 403 error will be performed if the user tries to make
|
||||||
# a custom request.
|
# a custom request.
|
||||||
# We could also delete the field, but some views might be affected.
|
# We could also delete the field, but some views might be affected.
|
||||||
|
meta = form.instance._meta
|
||||||
for key in form.base_fields:
|
for key in form.base_fields:
|
||||||
if not PermissionBackend.check_perm(self.request.user, "wei.change_weiregistration_" + key, self.object):
|
if not PermissionBackend.check_perm(self.request.user,
|
||||||
|
f"{meta.app_label}.change_{meta.model_name}_" + key, self.object):
|
||||||
form.fields[key].widget = HiddenInput()
|
form.fields[key].widget = HiddenInput()
|
||||||
|
|
||||||
return form
|
return form
|
||||||
|
|
Loading…
Reference in New Issue