mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 12:04:15 +00:00
12 lines
289 B
Python
12 lines
289 B
Python
|
from django.contrib.auth.models import Permission as P
|
||
|
|
||
|
class Permission(P):
|
||
|
"""
|
||
|
Proxy model to Django Permissions model allows us to override __str__
|
||
|
"""
|
||
|
def __str__(self):
|
||
|
return f'{self.content_type.app_label}: {self.name}'
|
||
|
|
||
|
class Meta:
|
||
|
proxy = True
|