Changeset 9853 for main/waeup.aaue/trunk/src/waeup/aaue/students
- Timestamp:
- 9 Jan 2013, 09:57:36 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py
r9496 r9853 32 32 """ 33 33 grok.context(ICustomStudentOnlinePayment) 34 form_fields = grok.AutoFields(ICustomStudentOnlinePayment) 34 form_fields = grok.AutoFields(ICustomStudentOnlinePayment).omit( 35 'provider_amt', 'gateway_amt', 'thirdparty_amt') 35 36 form_fields[ 36 37 'creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') … … 48 49 """ 49 50 grok.context(ICustomStudentOnlinePayment) 50 form_fields = grok.AutoFields(ICustomStudentOnlinePayment) 51 form_fields = grok.AutoFields(ICustomStudentOnlinePayment).omit( 52 'provider_amt', 'gateway_amt', 'thirdparty_amt') 51 53 form_fields['creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') 52 54 form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le')
Note: See TracChangeset for help on using the changeset viewer.