summaryrefslogtreecommitdiffstats
path: root/main/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'main/models.py')
-rw-r--r--main/models.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/models.py b/main/models.py
index a377187..c3cb5cf 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