created_groups should display group title

This commit is contained in:
Laura Klünder 2019-12-24 18:47:07 +01:00
parent 408f01368c
commit beee396238

View file

@ -11,6 +11,10 @@ class ReportIssueForm(I18nModelFormMixin, ModelForm):
class ReportMissingLocationForm(I18nModelFormMixin, ModelForm):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields['created_groups'].label_from_instance = lambda obj: obj.title
class Meta:
model = Report
fields = ['title', 'description', 'created_title', 'created_groups']