From 3863b0def308ca28970515fbd05a49a6a59f677f Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Wed, 23 Oct 2013 05:51:04 +0000 Subject: [PATCH] Added another state to the possible IETFWG states in the group proxy models file, to avoid exceptions. - Legacy-Id: 6484 --- ietf/group/proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/group/proxy.py b/ietf/group/proxy.py index bdedb7039..c76759524 100644 --- a/ietf/group/proxy.py +++ b/ietf/group/proxy.py @@ -131,7 +131,7 @@ class IETFWG(Group): #status = models.ForeignKey(WGStatus) @property def status_id(self): - return { "active": 1, "dormant": 2, "conclude": 3, "bof-conc": 3, "proposed": 4, "bof": 4, "abandon": 4 }[self.state_id] + return { "active": 1, "dormant": 2, "conclude": 3, "bof-conc": 3, "proposed": 4, "bof": 4, "abandon": 4, "replaced": 4}[self.state_id] #area_director = models.ForeignKey(AreaDirector, null=True) #meeting_scheduled = models.CharField(blank=True, max_length=3) @property