Ignore:
Timestamp:
6 Apr 2016, 05:04:26 (9 years ago)
Author:
Henrik Bettermann
Message:

Enable temporary suspension of officer accounts. Plugins must be
updated after restart.

See r12926.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.ikoba/trunk/src/waeup/ikoba/interfaces.py

    r13802 r13803  
    482482    """
    483483
    484     failed_logins = Attribute("""FailedLoginInfo for this account""")
     484    failed_logins = Attribute('FailedLoginInfo for this account')
    485485
    486486    name = schema.TextLine(
    487487        title = _(u'User Id'),
    488         description = u'Login name of user',
     488        description = _(u'Login name of user'),
    489489        required = True,)
    490490
     
    495495    public_name = schema.TextLine(
    496496        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."),
    499499        required = False,)
    500500
     
    522522        )
    523523
     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        )
    524530
    525531
Note: See TracChangeset for help on using the changeset viewer.