You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in colab/search/forms.py there's the following content:
list = forms.MultipleChoiceField(
required=False,
label=_(u'Mailinglist'),
choices=[('TODO', 'TODO')]
choices=[(v, v) for v in MailingList.objects.values_list(
'name', flat=True)]
)
Let's try to find a way to do it using plugin instead
The text was updated successfully, but these errors were encountered:
in colab/search/forms.py there's the following content:
list = forms.MultipleChoiceField(
required=False,
label=_(u'Mailinglist'),
choices=[('TODO', 'TODO')]
choices=[(v, v) for v in MailingList.objects.values_list(
'name', flat=True)]
)
Let's try to find a way to do it using plugin instead
The text was updated successfully, but these errors were encountered: