Return the namespace and label of a permission object instead of just the label
This commit is contained in:
@@ -21,7 +21,7 @@ class Permission(models.Model):
|
|||||||
verbose_name_plural = _(u'permissions')
|
verbose_name_plural = _(u'permissions')
|
||||||
|
|
||||||
def __unicode__(self):
|
def __unicode__(self):
|
||||||
return self.label
|
return '%s: %s' % (self.namespace, self.label)
|
||||||
|
|
||||||
def get_holders(self):
|
def get_holders(self):
|
||||||
return [holder.holder_object for holder in self.permissionholder_set.all()]
|
return [holder.holder_object for holder in self.permissionholder_set.all()]
|
||||||
|
|||||||
Reference in New Issue
Block a user