From b13b2f890e553257d539d1adc60aff4bb6cfbfbd Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Tue, 6 Mar 2012 16:35:53 +0000 Subject: [PATCH] Consider BOFs to be proposed groups in the proxy when comparing with status_id - Legacy-Id: 4037 --- 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 7d2540369..90340d737 100644 --- a/ietf/group/proxy.py +++ b/ietf/group/proxy.py @@ -133,7 +133,7 @@ class IETFWG(Group): #status = models.ForeignKey(WGStatus) @property def status_id(self): - return { "active": 1, "dormant": 2, "conclude": 3, "proposed": 4, "bof": 1 }[self.state_id] + return { "active": 1, "dormant": 2, "conclude": 3, "proposed": 4, "bof": 4, }[self.state_id] #area_director = models.ForeignKey(AreaDirector, null=True) #meeting_scheduled = models.CharField(blank=True, max_length=3) @property