Apply same fix for concluded state for PWGs as for BOFs (noticed by

Ryan Cross)
 - Legacy-Id: 3740
This commit is contained in:
Ole Laursen 2011-12-05 10:57:14 +00:00
parent b654dde001
commit 790d92622f

View file

@ -242,6 +242,8 @@ for o in IETFWG.objects.all().order_by("pk"):
s = state_names["conclude"]
elif o.group_type.type == "PWG":
s = state_names["proposed"]
if o.status.status == "Concluded":
s = state_names["conclude"]
elif o.status.status == "Active":
s = state_names["active"]
elif o.status.status == "Dormant":