Changeset 12522 for main/waeup.ikoba/trunk/src/waeup/ikoba
- Timestamp:
- 30 Jan 2015, 07:54:45 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/interfaces.py
r12443 r12522 383 383 """ 384 384 385 email_from = schema. ASCIILine(385 email_from = schema.TextLine( 386 386 title = _(u'Email Address:'), 387 387 default = None, … … 390 390 ) 391 391 392 email_to = schema. ASCIILine(392 email_to = schema.TextLine( 393 393 title = _(u'Email to:'), 394 394 default = None, … … 500 500 required = False,) 501 501 502 email = schema. ASCIILine(502 email = schema.TextLine( 503 503 title = _(u'Email Address'), 504 504 default = None, … … 590 590 ) 591 591 592 email_admin = schema. ASCIILine(592 email_admin = schema.TextLine( 593 593 title = _(u'Email Address of Administrator'), 594 default = 'contact@waeup.org',594 default = u'contact@waeup.org', 595 595 required = True, 596 596 constraint=validate_email,
Note: See TracChangeset for help on using the changeset viewer.