custom groups model, track m2m objects on groups and users, revise fixtures, revise admin.py, migrations, skip problematic tests

This commit is contained in:
Rachid Mrad 2023-09-21 11:20:28 -04:00
parent d92f289556
commit 0776b5c4ec
No known key found for this signature in database
GPG key ID: EF38E4CEC4A8F3CF
8 changed files with 249 additions and 141 deletions

View file

@ -0,0 +1,8 @@
from django.contrib.auth.models import Group
class UserGroup(Group):
# Add custom fields or methods specific to your group model here
class Meta:
verbose_name = "User group"
verbose_name_plural = "User groups"