Ignore:
Timestamp:
14 Apr 2011, 08:07:37 (14 years ago)
Author:
uli
Message:

Introduce locked-attribute for applicants to control workflow a bit.

File:
1 edited

Legend:

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

    r5907 r5941  
    454454    required attributes set to True (which is the default).
    455455    """
     456    locked = schema.Bool(
     457        title = u'Form locked',
     458        default = False,
     459        readonly = True,
     460        )
    456461    access_code = schema.TextLine(
    457462        title = u'Access Code',
     
    558563    """The data set presented to PDE applicants.
    559564    """
     565    locked = schema.Bool(
     566        title = u'Form locked',
     567        default = False,
     568        readonly = True,
     569        )
    560570    reg_no = schema.TextLine(
    561571        title = u'JAMB Registration Number',
Note: See TracChangeset for help on using the changeset viewer.