Changes between Initial Version and Version 1 of Ticket #17561, comment 3
- Timestamp:
- Jan 27, 2012, 3:59:24 PM (13 years ago)
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 EmailFieldto state whether you want it to lower all case or not. It would save having to do something in the form validation like1 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 2 2 3 {{{#!python 3 4 def clean_email(self): 4 5 return self.cleaned_data['email'].lower() 5 6 }}}