From 67f909f4ba7d06017136fd14483a75c8f81d5fef Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 6 Jan 2016 13:27:01 +0100 Subject: [PATCH 3/6] agent/authentic2: add help text to role form "emails" field (#9503) --- hobo/agent/authentic2/role_forms.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hobo/agent/authentic2/role_forms.py b/hobo/agent/authentic2/role_forms.py index 57df140..de92627 100644 --- a/hobo/agent/authentic2/role_forms.py +++ b/hobo/agent/authentic2/role_forms.py @@ -81,7 +81,8 @@ class RoleForm(RoleEditForm): required=False) emails = CommaSeparatedCharField(label=_('Emails'), item_validators=[EmailValidator()], - required=False) + required=False, + help_text=_('Emails must be separated by commas.')) emails_to_members = forms.BooleanField(required=False, label=_('Emails to members')) -- 2.1.4