Is there a way to make the profile require users to fill out their name?
Andrew
On 6/30/19 1:26 AM, andrew.bernard@gmail.com wrote:
Is there a way to make the profile require users to fill out their name?
You can edit postorius/forms/list_forms.py. There are two class
definitions class ListSubscribe(forms.Form):
and class ListAnonymousSubscribe(forms.Form):
, both of which contain
display_name = forms.CharField(
label=_('Your name (optional)'), required=False)
which you could change to
display_name = forms.CharField(
label=_('Your name'), required=True)
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
Thank you Mark, most helpful.
As an aside, how do you get the code colour highlighting and the code boxes in your post here on the web interface?
Andrew
On 7/7/19 3:52 PM, Andrew Bernard wrote:
Thank you Mark, most helpful.
As an aside, how do you get the code colour highlighting and the code boxes in your post here on the web interface?
That is a result of <https://gitlab.com/mailman/hyperkitty/merge_requests/160> which is installed for this list.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
participants (3)
-
Andrew Bernard
-
andrew.bernard@gmail.com
-
Mark Sapiro