Changes between Initial Version and Version 1 of Ticket #17561, comment 3


Ignore:
Timestamp:
Jan 27, 2012, 3:59:24 PM (13 years ago)
Author:
Łukasz Rekucki

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #17561, comment 3

    initial v1  
    1 I suppose its better to adhere to the RFC.  Perhaps an option could be passed to EmailField to state whether you want it to lower all case or not.  It would save having to do something in the form validation like
     1I suppose its better to adhere to the RFC.  Perhaps an option could be passed to {{{EmailField}}} to state whether you want it to lower all case or not.  It would save having to do something in the form validation like
    22
     3{{{#!python
    34def clean_email(self):
    45    return self.cleaned_data['email'].lower()
    5 
     6}}}
Back to Top