Changeset 17011


Ignore:
Timestamp:
8 Jul 2022, 10:33:54 (2 years ago)
Author:
Henrik Bettermann
Message:

Changes requested by email from Niyi.

Location:
main/kofacustom.lpng/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.lpng/trunk/layout/theme.html

    r16996 r17011  
    9191
    9292      <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>
    9494      </div>       
    9595
  • main/kofacustom.lpng/trunk/src/kofacustom/lpng/applicants/interfaces.py

    r16997 r17011  
    6464
    6565    applicant_id = schema.TextLine(
    66         title = _(u'Applicant Id'),
     66        title = _(u'Registrant Id'),
    6767        required = False,
    6868        readonly = False,
     69        )
     70       
     71    vin = schema.TextLine(
     72        title = _(u'Voter Identification No (VIN)'),
     73        required = True,
    6974        )
    7075
  • main/kofacustom.lpng/trunk/src/kofacustom/lpng/interswitch/tests.py

    r16997 r17011  
    215215        self.browser.getControl(name="form.date_of_birth").value = '09/09/1988'
    216216        self.browser.getControl(name="form.sex").value = ['m']
     217        self.browser.getControl(name="form.vin").value = '1234'
    217218        self.browser.getControl(name="form.email").value = 'xx@yy.zz'
    218219        self.applicantscontainer.application_fee = 1000.0
  • main/kofacustom.lpng/trunk/src/kofacustom/lpng/utils/utils.py

    r16994 r17011  
    3838        'no': 'no application',
    3939        }
     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.