![](https://secure.gravatar.com/avatar/d1c9129d47811254fac68d8561c9a50c.jpg?s=120&d=mm&r=g)
Is there a way to make the profile require users to fill out their name?
Andrew
![](https://secure.gravatar.com/avatar/56f108518d7ee2544412cc80978e3182.jpg?s=120&d=mm&r=g)
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
![](https://secure.gravatar.com/avatar/d1c9129d47811254fac68d8561c9a50c.jpg?s=120&d=mm&r=g)
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
![](https://secure.gravatar.com/avatar/56f108518d7ee2544412cc80978e3182.jpg?s=120&d=mm&r=g)
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