Changeset 12612
- Timestamp:
- 13 Feb 2015, 11:28:55 (10 years ago)
- Location:
- main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/browser.py
r12611 r12612 59 59 def _sigsInFooter(self): 60 60 return (_('Date, Signature of Internee'), 61 _('Date, Signature of Supervis or'),61 _('Date, Signature of Supervising Pharmacist'), 62 62 ) 63 63 -
main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/interfaces.py
r12611 r12612 878 878 institution_address = schema.Text( 879 879 title = _(u'Institution'), 880 description= _('Enter name and address of institution.'), 880 description= _('Enter name and address of institution ' 881 'where internee will serve.'), 881 882 required = False, 882 883 ) … … 927 928 ) 928 929 929 educational_period = schema.TextLine(930 title = _(u'Period'),931 description= _('Enter period of attendance.'),932 required = False,933 readonly = False,934 )935 936 930 educational_qualification = schema.TextLine( 937 931 title = _(u'Qualification'), … … 942 936 943 937 supervisor = schema.TextLine( 944 title = _(u'Supervising Pharmacist '),938 title = _(u'Supervising Pharmacist (Preceptor)'), 945 939 required = False, 946 940 readonly = False, … … 986 980 ) 987 981 982 date_of_commencement = FormattedDate( 983 title = _(u'Date of Commencement'), 984 description = _(u'Enter date of commencement of internship.'), 985 required = False, 986 show_year = True, 987 ) 988 988 989 class IAPPITContractOfficialUse(IIkobaObject): 989 990 """Interface for editing APPIT official use data.
Note: See TracChangeset for help on using the changeset viewer.