And of course I missed something ...

This commit is contained in:
Peter Pfeufer 2020-10-26 01:10:41 +01:00
parent 6cd0a42791
commit 2f59c8df22
No known key found for this signature in database
GPG Key ID: 6051D2C6AD4EBC27

View File

@ -107,7 +107,7 @@ class AuthGroup(models.Model):
help_text="States listed here will have the ability to join this group provided "
"they have the proper permissions.")
description = models.TextField(max_length=512, blank=True, help_text="Short description <i>(max. 512 characters)</i> of the group shown to users.")
description = models.TextField(max_length=512, null=True, blank=True, help_text="Short description <i>(max. 512 characters)</i> of the group shown to users.")
def __str__(self):
return self.group.name