Default to $0 for classified clins when unclassified

This commit is contained in:
Patrick Smith 2019-01-08 17:51:49 -05:00
parent 3a5c55410c
commit 7b2e74f2f5

View File

@ -85,6 +85,11 @@ class UnclassifiedFundingForm(FundingForm):
clin_02 = IntegerField("CLIN 02: Classified (available soon)")
clin_04 = IntegerField("CLIN 04: Classified (available soon)")
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.clin_02.data = "0"
self.clin_04.data = "0"
class OversightForm(CacheableForm):
ko_first_name = StringField("First Name")