missing translation
[redakcja.git] / apps / catalogue / models / chunk.py
index 3ce2050..d373e04 100755 (executable)
@@ -22,6 +22,7 @@ class Chunk(dvcs_models.Document):
     number = models.IntegerField(_('number'))
     slug = models.SlugField(_('slug'))
     title = models.CharField(_('title'), max_length=255, blank=True)
+    gallery_start = models.IntegerField(_('gallery start'), null=True, blank=True)
 
     # cache
     _short_html = models.TextField(null=True, blank=True, editable=False)
@@ -38,6 +39,7 @@ class Chunk(dvcs_models.Document):
         ordering = ['number']
         verbose_name = _('chunk')
         verbose_name_plural = _('chunks')
+        permissions = [('can_pubmark', 'Can mark for publishing')]
 
     # Representing
     # ============