added use load from external

This commit is contained in:
Mohamed Nouffer
2022-10-16 17:06:28 +05:30
parent 0161f351d5
commit 601c70a79b
7 changed files with 102 additions and 6 deletions

View File

@ -187,6 +187,9 @@ class CustomUser(AbstractBaseUser, PermissionsMixin):
is_staff = models.BooleanField(default=False)
is_active = models.BooleanField(default=True)
is_rogaining = models.BooleanField(default=False)
zekken_number = models.CharField(_("Zekken Number"), max_length=255, blank=True, null=True)
event_code = models.CharField(_("Event Code"), max_length=255, blank=True, null=True)
team_name = models.CharField(_("Team Name"), max_length=255, blank=True, null=True)
group = models.CharField(max_length=255,
choices=Groups.choices,
default=Groups.GB1)