Fixes #1514: No field to edit Cluster comments

This commit is contained in:
johnhu 2017-09-20 11:48:49 +00:00
parent 8dc6eca2d4
commit 43f10277d9

View File

@ -49,10 +49,11 @@ class ClusterGroupForm(BootstrapMixin, forms.ModelForm):
#
class ClusterForm(BootstrapMixin, CustomFieldForm):
comments = CommentField(widget=SmallTextarea)
class Meta:
model = Cluster
fields = ['name', 'type', 'group']
fields = ['name', 'type', 'group', 'comments']
class ClusterCSVForm(forms.ModelForm):