This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
portail-citoyen2/portail_citoyen/models.py

11 lines
201 B
Python

from django.contrib.auth.models import Group
class Role(Group):
class Meta:
proxy = True
verbose_name = _('role')
verbose_name_plural = _('roles')
import permission_hack