Fixed #3773 -- Added app_label to Permission.__str__(), so that the admin permission list is easier to use with multiple permissions of the same name. Thanks, mrmachine
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4823 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
f2861dad43
commit
796b2304f3
|
@ -45,7 +45,7 @@ class Permission(models.Model):
|
|||
ordering = ('content_type', 'codename')
|
||||
|
||||
def __str__(self):
|
||||
return "%s | %s" % (self.content_type, self.name)
|
||||
return "%s | %s | %s" % (self.content_type.app_label, self.content_type, self.name)
|
||||
|
||||
class Group(models.Model):
|
||||
"""Groups are a generic way of categorizing users to apply permissions, or some other label, to those users. A user can belong to any number of groups.
|
||||
|
|
Loading…
Reference in New Issue