Changeset 12142 for main/waeup.kwarapoly
- Timestamp:
- 4 Dec 2014, 10:17:06 (10 years ago)
- Location:
- main/waeup.kwarapoly/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kwarapoly/trunk/CHANGES.txt
r12061 r12142 4 4 1.2dev (unreleased) 5 5 =================== 6 7 * Nationality and sex must be edited by pre-admission applicants. 6 8 7 9 * Introduce a pay_item_id for part-time for the first time on this portal. -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/applicants/browser.py
r11656 r12142 53 53 'middlename', 54 54 'lastname', 55 'sex',55 #'sex', 56 56 'jamb_score' 57 57 ] -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/applicants/interfaces.py
r11848 r12142 326 326 required = True, 327 327 ) 328 nationality = schema.Choice( 329 source = nats_vocab, 330 title = _(u'Nationality'), 331 required = True, 332 ) 328 333 course1 = schema.Choice( 329 334 title = _(u'1st Choice Course of Study'), … … 343 348 ) 344 349 350 ICustomUGApplicantEdit[ 351 'nationality'].order = ICustomUGApplicant['nationality'].order 345 352 ICustomUGApplicantEdit[ 346 353 'email'].order = ICustomUGApplicant['email'].order
Note: See TracChangeset for help on using the changeset viewer.