Changeset 13803 for main/waeup.ikoba/trunk/src/waeup/ikoba/interfaces.py
- Timestamp:
- 6 Apr 2016, 05:04:26 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/interfaces.py
r13802 r13803 482 482 """ 483 483 484 failed_logins = Attribute( """FailedLoginInfo for this account""")484 failed_logins = Attribute('FailedLoginInfo for this account') 485 485 486 486 name = schema.TextLine( 487 487 title = _(u'User Id'), 488 description = u'Login name of user',488 description = _(u'Login name of user'), 489 489 required = True,) 490 490 … … 495 495 public_name = schema.TextLine( 496 496 title = _(u'Public Name'), 497 description = u"Substitute for officer's real name "498 "in object histories.",497 description = _(u"Substitute for officer's real name " 498 "in student object histories."), 499 499 required = False,) 500 500 … … 522 522 ) 523 523 524 suspended = schema.Bool( 525 title = _(u'Account suspended'), 526 description = _(u'If set, the account is immediately blocked.'), 527 default = False, 528 required = False, 529 ) 524 530 525 531
Note: See TracChangeset for help on using the changeset viewer.