Fixes #3514: Label TextVar fields when rendering custom script forms

This commit is contained in:
Jeremy Stretch
2019-09-18 15:39:26 -04:00
parent f012c662f0
commit 7f641c77f5
7 changed files with 18 additions and 9 deletions

View File

@@ -241,7 +241,9 @@ class TagBulkEditForm(BootstrapMixin, BulkEditForm):
#
class ConfigContextForm(BootstrapMixin, forms.ModelForm):
data = JSONField()
data = JSONField(
label=''
)
class Meta:
model = ConfigContext