+class EditorPanel(models.Model):
+ id = models.CharField(max_length=24, primary_key=True)
+ display_name = models.CharField(max_length=128)
+
+ toolbar_groups = models.ManyToManyField(toolbar.models.ButtonGroup, blank=True)
+ toolbar_extra = models.ForeignKey(toolbar.models.ButtonGroup, null=True, blank=True,
+ unique=True, related_name='main_editor_panels')
+
+ def __unicode__(self):
+ return self.display_name
+
+
+# Yes, this is intentionally unnormalized !
+class GalleryForDocument(models.Model):
+ name = models.CharField(max_length=100)
+
+ # directory containing scans under MEDIA_ROOT/
+ subpath = models.CharField(max_length=255)
+
+ # document associated with the gallery
+ document = models.CharField(max_length=255)
+
+ def __unicode__(self):
+ return u"%s:%s" % (self.subpath, self.document)
\ No newline at end of file