diff options
Diffstat (limited to 'main/models.py')
-rw-r--r-- | main/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/models.py b/main/models.py index a377187b..c3cb5cf0 100644 --- a/main/models.py +++ b/main/models.py @@ -48,6 +48,8 @@ class PackageManager(models.Manager): class Donor(models.Model): id = models.AutoField(primary_key=True) name = models.CharField(max_length=255, unique=True) + visible = models.BooleanField(default=True, + help_text="Should we show this donor on the public page?") def __unicode__(self): return self.name |