Fixed a problem with nomcom classification forms showing too many fields.

- Legacy-Id: 9611
This commit is contained in:
Henrik Levkowetz 2015-05-11 19:13:52 +00:00
parent 1bced6e46b
commit 869363e0b0

View file

@ -757,7 +757,7 @@ FullFeedbackFormSet = forms.modelformset_factory(
form=MutableFeedbackForm,
can_order=False,
can_delete=False,
fields='__all__',
fields=('type',),
)