From d30287538170ed2dbb892520baeed797ebf0ffdc Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Wed, 16 Nov 2016 10:42:18 +0000 Subject: [PATCH] Don't limit the team choices for ResultUsedInReviewTeam, otherwise it's not possible to make a new team - Legacy-Id: 12363 --- ietf/review/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/review/models.py b/ietf/review/models.py index e74deea70..870388ef3 100644 --- a/ietf/review/models.py +++ b/ietf/review/models.py @@ -88,7 +88,7 @@ class ResultUsedInReviewTeam(models.Model): reviews. This also implicitly defines which teams are review teams - if there are no possible review results valid for a given team, it can't be a review team.""" - team = models.ForeignKey(Group, limit_choices_to=~models.Q(resultusedinreviewteam=None)) + team = models.ForeignKey(Group) result = models.ForeignKey(ReviewResultName) def __unicode__(self):