Consider BOFs to be proposed groups in the proxy when comparing with status_id

- Legacy-Id: 4037
This commit is contained in:
Ole Laursen 2012-03-06 16:35:53 +00:00
parent f1c9c7a8dc
commit b13b2f890e

View file

@ -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