diff options
author | luxagraf <sng@luxagraf.net> | 2012-10-14 22:26:39 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2012-10-14 22:26:39 -0400 |
commit | fa869d1a60ff6f8c41cd7f2bf0e0964bff9ba9f1 (patch) | |
tree | f60ab325dbaf6a4dab443daa3f8fea84edba4a1d /app/photos | |
parent | 27e05eaae0dd829090749facc5e10ca0a7b9a5dc (diff) |
converted publishing system to have buttons int the admin and reworked the config system
Diffstat (limited to 'app/photos')
-rw-r--r-- | app/photos/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/photos/models.py b/app/photos/models.py index dcb3d8a..7b75397 100644 --- a/app/photos/models.py +++ b/app/photos/models.py @@ -39,7 +39,7 @@ class Photo(models.Model): slideshowimage_height = models.CharField(max_length=4, blank=True, null=True) slideshowimage_margintop = models.CharField(max_length=4, blank=True, null=True) slideshowimage_marginleft = models.CharField(max_length=4, blank=True, null=True) - + is_public = models.BooleanField(default=True) class Meta: |