X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/3c0f69b2b4d62eaeb05403edc7b4c171622edc9a..537012c60af1ea1c0e39949c58df4647ddadc72b:/apps/toolbar/models.py diff --git a/apps/toolbar/models.py b/apps/toolbar/models.py index f91f7390..ae101e07 100644 --- a/apps/toolbar/models.py +++ b/apps/toolbar/models.py @@ -14,22 +14,35 @@ class ButtonGroup(models.Model): def __unicode__(self): return self.name - class Button(models.Model): label = models.CharField(max_length=32) - slug = models.SlugField() #unused - - action = models.CharField(max_length=256) - + slug = models.SlugField(unique=True) #unused + + # behaviour + params = models.TextField() # TODO: should be a JSON field + scriptlet = models.ForeignKey('Scriptlet') + + # ui related stuff key = models.CharField(blank=True, max_length=1) - position = models.IntegerField(default=0) - + tooltip = models.CharField(blank=True, max_length=120) + + # Why the button is restricted to have the same position in each group ? + # position = models.IntegerField(default=0) group = models.ManyToManyField(ButtonGroup) class Meta: - ordering = ('position', 'label',) + ordering = ('label',) verbose_name, verbose_name_plural = _('button'), _('buttons') def __unicode__(self): return self.label +class Scriptlet(models.Model): + name = models.CharField(max_length=64, primary_key=True) + code = models.TextField() + + # TODO: add this later and remap code property to this + # code_min = models.TextField() + + def __unicode__(self): + return _(u'javascript')+u':'+self.name