Changeset 16502


Ignore:
Timestamp:
4 Jun 2021, 10:09:05 (3 years ago)
Author:
Henrik Bettermann
Message:

Add field description.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants/interfaces.py

    r16287 r16502  
    639639        )
    640640
     641    fst_sit_fname = schema.TextLine(
     642        title = _(u'Full Name'),
     643        description = _(u'As it is written in the WAEC result(s) respectively.'),
     644        required = False,
     645        readonly = False,
     646        )
     647
     648    scd_sit_fname = schema.TextLine(
     649        title = _(u'Full Name'),
     650        description = _(u'As it is written in the WAEC result(s) respectively.'),
     651        required = False,
     652        readonly = False,
     653        )
     654
    641655ICustomUGApplicantEdit[
    642656    'date_of_birth'].order = ICustomUGApplicant['date_of_birth'].order
     
    645659ICustomUGApplicantEdit[
    646660    'phone'].order =  ICustomUGApplicantEdit['email'].order
     661ICustomUGApplicantEdit[
     662    'fst_sit_fname'].order =  ICustomUGApplicant['fst_sit_fname'].order
     663ICustomUGApplicantEdit[
     664    'scd_sit_fname'].order =  ICustomUGApplicant['scd_sit_fname'].order
    647665
    648666class ICustomPGApplicantEdit(ICustomPGApplicant):
Note: See TracChangeset for help on using the changeset viewer.