Changeset 8960 for main/waeup.uniben/trunk/src/waeup/uniben/applicants
- Timestamp:
- 9 Jul 2012, 13:38:55 (13 years ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/browser.py
r8928 r8960 159 159 """ 160 160 grok.context(ICustomApplicantOnlinePayment) 161 form_fields = grok.AutoFields(ICustomApplicantOnlinePayment).omit('ac') 161 # We temporarily omit r_company since this attribute was not set in 2012 162 form_fields = grok.AutoFields(ICustomApplicantOnlinePayment).omit( 163 'ac', 'r_company') 162 164 form_fields[ 163 165 'creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') … … 169 171 """ 170 172 grok.context(ICustomApplicantOnlinePayment) 171 form_fields = grok.AutoFields(ICustomApplicantOnlinePayment).omit('ac') 173 # We temporarily omit r_company since this attribute was not set in 2012 174 form_fields = grok.AutoFields(ICustomApplicantOnlinePayment).omit( 175 'ac', 'r_company') 172 176 form_fields['creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') 173 177 form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') -
main/waeup.uniben/trunk/src/waeup/uniben/applicants/interfaces.py
r8928 r8960 285 285 readonly = False, 286 286 ) 287 screening_venue = schema.TextLine(288 title = _(u'Screening Venue'),289 required = False,290 readonly = False,291 )292 screening_date = schema.TextLine(293 title = _(u'Screening Date'),294 required = False,295 )296 screening_score = schema.Int(297 title = _(u'Screening Score'),298 required = False,299 readonly = False,300 )301 287 student_id = schema.TextLine( 302 288 title = _(u'Student Id'),
Note: See TracChangeset for help on using the changeset viewer.