Changeset 16471 for main/waeup.uniben/trunk/src/waeup
- Timestamp:
- 20 Apr 2021, 07:16:10 (4 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
r16347 r16471 494 494 if self.target is not None and self.target == 'tscf': 495 495 form_fields = grok.AutoFields(ITranscriptApplicant) 496 form_fields['courier_tno'].for_display = True 497 form_fields['proc_date'].for_display = True 496 498 for field in TRANS_OMIT_EDIT_FIELDS: 497 499 form_fields = form_fields.omit(field) … … 500 502 if self.target is not None and self.target == 'tscs': 501 503 form_fields = grok.AutoFields(ITranscriptApplicant) 504 form_fields['courier_tno'].for_display = True 505 form_fields['proc_date'].for_display = True 502 506 for field in TRANS_SHORT_OMIT_EDIT_FIELDS: 503 507 form_fields = form_fields.omit(field) -
main/waeup.uniben/trunk/src/waeup/uniben/applicants/interfaces.py
r16376 r16471 423 423 ) 424 424 425 courier_tno = schema.TextLine( 426 title = _(u'Courier Tracking Number'), 427 required = False, 428 ) 429 430 proc_date = FormattedDate( 431 title = _(u'Processing Date'), 432 required = False, 433 #date_format = u'%d/%m/%Y', # Use grok-instance-wide default 434 show_year = True, 435 ) 436 437 425 438 class ICustomUGApplicant(IApplicantBaseData, IBankAccount): 426 439 """An undergraduate applicant.
Note: See TracChangeset for help on using the changeset viewer.