Changeset 5486 for main/waeup.sirp/trunk
- Timestamp:
- 24 Aug 2010, 12:36:26 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/jambtables/interfaces.py
r5482 r5486 541 541 required = False, 542 542 ) 543 aos = schema.TextLine( 544 # XXX: should be choice 545 title = u'Area of Specialisation', 546 required = False, 547 ) 548 subj1 = schema.TextLine( 549 # XXX: should be choice 550 title = u'1st Choice of Study', 551 readonly = True, 552 ) 553 subj2 = schema.TextLine( 554 # XXX: should be choice 555 title = u'2nd Choice of Study', 556 required = False, 557 ) 558 subj3 = schema.TextLine( 559 # XXX: should be choice 560 title = u'3rd Choice of Study', 561 required = False, 562 ) 563 564 # 565 # Application Data 566 # 567 application_date = schema.Date( 568 title = u'Application Date', 569 readonly = True, 570 ) 571 status = schema.TextLine( 572 # XXX: should be 'status' type 573 title = u'Application Status', 574 readonly = True, 575 ) 576 screening_date = schema.Date( 577 title = u'Screening Date', 578 readonly = True, 579 ) 543 580 passport = schema.Bool( 544 581 title = u'Passport Photograph', 545 582 default = True, 546 583 required = False, 547 )548 aos = schema.TextLine(549 # XXX: should be choice550 title = u'Area of Specialisation',551 required = False,552 )553 subj1 = schema.TextLine(554 # XXX: should be choice555 title = u'1st Choice of Study',556 readonly = True,557 )558 subj2 = schema.TextLine(559 # XXX: should be choice560 title = u'2nd Choice of Study',561 required = False,562 )563 subj3 = schema.TextLine(564 # XXX: should be choice565 title = u'3rd Choice of Study',566 required = False,567 )568 569 #570 # Application Data571 #572 application_date = schema.Date(573 title = u'Application Date',574 readonly = True,575 )576 status = schema.TextLine(577 # XXX: should be 'status' type578 title = u'Application Status',579 readonly = True,580 )581 screening_date = schema.Date(582 title = u'Screening Date',583 readonly = True,584 584 ) 585 585
Note: See TracChangeset for help on using the changeset viewer.