Changeset 17011 for main/kofacustom.lpng/trunk
- Timestamp:
- 8 Jul 2022, 10:33:54 (2 years ago)
- Location:
- main/kofacustom.lpng/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.lpng/trunk/layout/theme.html
r16996 r17011 91 91 92 92 <div id="logo-container"> 93 <a href=""><img src="static_custom/lp_logo.png" width=" 200"></a>93 <a href=""><img src="static_custom/lp_logo.png" width="350"></a> 94 94 </div> 95 95 -
main/kofacustom.lpng/trunk/src/kofacustom/lpng/applicants/interfaces.py
r16997 r17011 64 64 65 65 applicant_id = schema.TextLine( 66 title = _(u' Applicant Id'),66 title = _(u'Registrant Id'), 67 67 required = False, 68 68 readonly = False, 69 ) 70 71 vin = schema.TextLine( 72 title = _(u'Voter Identification No (VIN)'), 73 required = True, 69 74 ) 70 75 -
main/kofacustom.lpng/trunk/src/kofacustom/lpng/interswitch/tests.py
r16997 r17011 215 215 self.browser.getControl(name="form.date_of_birth").value = '09/09/1988' 216 216 self.browser.getControl(name="form.sex").value = ['m'] 217 self.browser.getControl(name="form.vin").value = '1234' 217 218 self.browser.getControl(name="form.email").value = 'xx@yy.zz' 218 219 self.applicantscontainer.application_fee = 1000.0 -
main/kofacustom.lpng/trunk/src/kofacustom/lpng/utils/utils.py
r16994 r17011 38 38 'no': 'no application', 39 39 } 40 41 #: Maximum size in Bytes of passport images in the applicants and 42 #: students section 43 MAX_PASSPORT_SIZE = 100 * 1024
Note: See TracChangeset for help on using the changeset viewer.