Changeset 13368 for main/waeup.aaue/trunk
- Timestamp:
- 31 Oct 2015, 07:48:41 (9 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/tests/test_applicantcopier.py
r11617 r13368 47 47 self.browser.getControl("Save").click() 48 48 self.browser.getControl(name="form.nationality").value = ['NG'] 49 self.browser.getControl(name="form.lga").value = ['abia_aba_north'] 49 50 self.browser.getControl(name="form.course_admitted").value = ['CERT1'] 50 51 self.browser.getControl(name="form.programme_type").value = ['regular'] 52 # Date of birth is not required 53 self.browser.getControl(name="form.date_of_birth").value = '' 51 54 52 55 self.browser.getControl(name="form.fst_sit_fname").value = 'Alfons' -
main/waeup.aaue/trunk/src/waeup/aaue/students/interfaces.py
r13362 r13368 195 195 """ 196 196 197 date_of_birth = FormattedDate(198 title = _(u'Date of Birth'),199 required = True,200 show_year = True,201 )197 #date_of_birth = FormattedDate( 198 # title = _(u'Date of Birth'), 199 # required = True, 200 # show_year = True, 201 # ) 202 202 203 203 lga = schema.Choice( … … 209 209 ICustomUGStudentClearance['lga'].order = INigeriaUGStudentClearance[ 210 210 'lga'].order 211 ICustomUGStudentClearance['date_of_birth'].order = INigeriaUGStudentClearance[212 'date_of_birth'].order211 #ICustomUGStudentClearance['date_of_birth'].order = INigeriaUGStudentClearance[ 212 # 'date_of_birth'].order 213 213 214 214
Note: See TracChangeset for help on using the changeset viewer.