Application: Check enough supports in status "pub" only.

This commit is contained in:
Emanuel Schuetze 2011-09-21 21:27:23 +02:00
parent cea2992ca0
commit 6c008488cf
1 changed files with 4 additions and 1 deletions

View File

@ -141,7 +141,10 @@ class Application(models.Model):
Return True, if the application has enough supporters
"""
min_supporters = int(config_get('application_min_supporters'))
return self.supporter.count() >= min_supporters
if self.status == "pub":
return self.supporter.count() >= min_supporters
else:
return True
@property
def missing_supporters(self):