- Timestamp:
- 10 May 2011, 23:58:44 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/interfaces.py
r6034 r6038 204 204 required = False, 205 205 ) 206 jamb_age = schema.Int(207 title = u'Age (provided by JAMB)',208 required = False,209 )210 206 date_of_birth = schema.Date( 211 207 title = u'Date of Birth', 212 required = False,213 )214 jamb_state = schema.TextLine(215 title = u'State (provided by JAMB)',216 required = False,217 )218 jamb_lga = schema.TextLine(219 title = u'LGA (provided by JAMB)',220 208 required = False, 221 209 ) … … 239 227 required = False, 240 228 ) 241 #passport = schema.Bool(242 # title = u'Passport Photograph',243 # default = True,244 # required = False,245 # )246 229 passport = ImageFile( 247 230 title = u'Passport Photograph', … … 524 507 ) 525 508 # 526 # JAMB scores527 #528 529 #530 509 # Application Data 531 510 # … … 573 552 readonly = True, 574 553 ) 575 reg_no = schema.TextLine(576 title = u'JAMB Registration Number',577 readonly = True,578 )579 554 access_code = schema.TextLine( 580 555 title = u'Access Code', … … 595 570 lastname = schema.TextLine( 596 571 title = u'Name', 597 readonly = True,598 )599 jamb_age = schema.Int(600 title = u'Age',601 572 readonly = True, 602 573 ) … … 605 576 required = True, 606 577 ) 607 jamb_state = schema.TextLine(608 title = u'State (provided by JAMB)',609 readonly = True,610 )611 jamb_lga = schema.TextLine(612 title = u'LGA (provided by JAMB)',613 readonly = True,614 )615 578 lga = schema.TextLine( 616 579 # XXX: should be choice … … 663 626 readonly = True, 664 627 ) 665 #passport = schema.Bool(666 # title = u'Passport Photograph',667 # default = True,668 # required = False,669 # ),670 #passport = schema.Bytes(671 # title = u'Passport Photograph',672 # required = True,673 # )674 #passport = schema.Object(675 # title = u'Passport Photograph',676 # required = True,677 # schema = IImage)678 628 passport = ImageFile( 679 629 title = u'Passport Photograph', … … 701 651 requires also an `id` and other attributes defined there. 702 652 """ 703 reg_no = schema.TextLine(704 title = u'Registration number',705 description = u'The JAMB registration number',706 required = True,707 readonly = True)708 709 653 access_code = schema.TextLine( 710 654 title = u'Access Code',
Note: See TracChangeset for help on using the changeset viewer.