X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/7cea6dff2ec8773528706b099fb7d3acd6b9b191..ff21f9bc563f16fcde81eafccd38f212f22ba582:/src/annoy/models.py?ds=sidebyside

diff --git a/src/annoy/models.py b/src/annoy/models.py
index 488fa87a8..fe5f8fafb 100644
--- a/src/annoy/models.py
+++ b/src/annoy/models.py
@@ -4,11 +4,17 @@ from django.db import models
 from django.template import Context, Template
 from django.utils.translation import ugettext_lazy as _
 from django.utils.timezone import now
-from .places import PLACES, PLACE_CHOICES
+from .places import PLACES, PLACE_CHOICES, STYLES
 
 
 class Banner(models.Model):
     place = models.SlugField(_('place'), choices=PLACE_CHOICES)
+    style = models.CharField(
+        _('style'), max_length=255, blank=True,
+        choices=STYLES,
+        help_text=_('Affects blackout.')
+    )
+    smallfont = models.BooleanField(_('small font'), default=False)
     action_label = models.CharField(
         _('action label'),
         max_length=255, blank=True,