- Timestamp:
- 15 May 2011, 01:21:59 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/interfaces.py
r6087 r6096 160 160 readonly = True, 161 161 ) 162 162 163 163 title = schema.TextLine( 164 164 title = u'Title', … … 166 166 default = u'-', 167 167 readonly = True, 168 ) 169 168 ) 169 170 170 prefix = schema.Choice( 171 171 title = u'Application target', … … 182 182 source = FutureYearsSource(), 183 183 readonly = True, 184 ) 184 ) 185 185 186 186 provider = schema.Choice( … … 263 263 source = FutureYearsSource(), 264 264 readonly = False, 265 ) 265 ) 266 266 267 267 provider = schema.Choice( … … 273 273 ) 274 274 275 IApplicantsContainerAdd['prefix'].order = IApplicantsContainer['prefix'].order 276 IApplicantsContainerAdd['year'].order = IApplicantsContainer['year'].order 277 IApplicantsContainerAdd['provider'].order = IApplicantsContainer['provider'].order 275 IApplicantsContainerAdd[ 276 'prefix'].order = IApplicantsContainer['prefix'].order 277 IApplicantsContainerAdd[ 278 'year'].order = IApplicantsContainer['year'].order 279 IApplicantsContainerAdd[ 280 'provider'].order = IApplicantsContainer['provider'].order 278 281 279 282 class IApplicantBaseData(IWAeUPObject):
Note: See TracChangeset for help on using the changeset viewer.