Browse Source

Fix typo in User.can_view_all

remove-useless-fields-preferences-template
Hugo Levy-Falk 6 years ago
parent
commit
e404fa36ec
  1. 2
      users/models.py

2
users/models.py

@ -1109,7 +1109,7 @@ class User(RevMixin, FieldPermissionModelMixin, AbstractBaseUser,
:return: True if the user can view the list and an explanation :return: True if the user can view the list and an explanation
message. message.
""" """
can = user_request.has_perm('use.view_user') can = user_request.has_perm('users.view_user')
return ( return (
can, can,
_("You don't have the right to view the list of users.") if not can else None, _("You don't have the right to view the list of users.") if not can else None,

Loading…
Cancel
Save