Added the bof-conc (Concluded BoF) slug to the proxy tranlator for status_id.

- Legacy-Id: 5452
This commit is contained in:
Henrik Levkowetz 2013-02-24 20:12:31 +00:00
parent 274812c5b9
commit 04858d3c2a

View file

@ -131,7 +131,7 @@ class IETFWG(Group):
#status = models.ForeignKey(WGStatus)
@property
def status_id(self):
return { "active": 1, "dormant": 2, "conclude": 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 }[self.state_id]
#area_director = models.ForeignKey(AreaDirector, null=True)
#meeting_scheduled = models.CharField(blank=True, max_length=3)
@property