Skip to content

Commit e784dc5

Browse files
committed
Add blank=True to unused_states and unused_tags since they don't have
to be filled in - Legacy-Id: 4003
1 parent 58c3c4f commit e784dc5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/group/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ class GroupInfo(models.Model):
1818
list_archive = models.CharField(max_length=255, blank=True)
1919
comments = models.TextField(blank=True)
2020

21-
unused_states = models.ManyToManyField('doc.State', help_text="Document states that have been disabled for the group")
22-
unused_tags = models.ManyToManyField(DocTagName, help_text="Document tags that have been disabled for the group")
21+
unused_states = models.ManyToManyField('doc.State', help_text="Document states that have been disabled for the group", blank=True)
22+
unused_tags = models.ManyToManyField(DocTagName, help_text="Document tags that have been disabled for the group", blank=True)
2323

2424
def __unicode__(self):
2525
return self.name

0 commit comments

Comments
 (0)