diff options
author | luxagraf <sng@luxagraf.net> | 2024-12-08 10:24:19 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2024-12-08 10:24:19 -0600 |
commit | 05b386315c09c735201566cf8945fc8ff78d2741 (patch) | |
tree | 9d12ef1a1abbb01d5ffa27832833bc5c7b3ac444 /app/lttr/models.py | |
parent | de5451cd00ff0c9c18fe03c1f2fc952850f36bc0 (diff) |
lttr: improved postcard admin
Diffstat (limited to 'app/lttr/models.py')
-rw-r--r-- | app/lttr/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/lttr/models.py b/app/lttr/models.py index 0a9fdc7..5519ff6 100644 --- a/app/lttr/models.py +++ b/app/lttr/models.py @@ -480,6 +480,7 @@ class PostcardSubscriber(models.Model): address = models.TextField() name = models.CharField(max_length=120) postcards_sent = models.PositiveIntegerField(default=0) + postcard_sent = models.BooleanField(default=False) def __str__(self): return self.name |