summaryrefslogtreecommitdiff
path: root/ishtar_common/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r--ishtar_common/models.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py
index bb285883f..e4c6d0e9a 100644
--- a/ishtar_common/models.py
+++ b/ishtar_common/models.py
@@ -1893,7 +1893,10 @@ class CustomFormJsonField(models.Model):
custom_form = models.ForeignKey(CustomForm, related_name='json_fields')
json_field = models.ForeignKey(JsonDataField,
related_name='custom_form_details')
+ label = models.CharField(_(u"Label"), max_length=200, blank=True,
+ default='')
order = models.IntegerField(verbose_name=_(u"Order"), default=1)
+ help_text = models.TextField(_(u"Help"), blank=True, null=True)
class Meta:
verbose_name = _(u"Custom form - Json data field")