Projet

Général

Profil

0003-agent-authentic2-add-help-text-to-role-form-emails-f.patch

Benjamin Dauvergne, 06 janvier 2016 13:31

Télécharger (1,14 ko)

Voir les différences:

Subject: [PATCH 3/5] 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(-)
hobo/agent/authentic2/role_forms.py
82 82
                                                         'they are concerned by this role.'))
83 83
    emails = CommaSeparatedCharField(label=_('Emails'),
84 84
                                     item_validators=[EmailValidator()],
85
                                     required=False)
85
                                     required=False,
86
                                     help_text=_('Emails must be separated by commas.'))
86 87
    emails_to_members = forms.BooleanField(required=False,
87 88
                                           label=_('Emails to members'))
88 89

  
89
-