Changeset 9853
- Timestamp:
- 9 Jan 2013, 09:57:36 (12 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/etranzact/browser_templates/enterpin.pt
r8441 r9853 1 1 <form tal:attributes="action view/action" 2 method="POST" i18n:domain="waeup. custom">2 method="POST" i18n:domain="waeup.aaue"> 3 3 <table class="form-table"> 4 4 <tbody> -
main/waeup.aaue/trunk/src/waeup/aaue/ftesting.zcml
r8896 r9853 2 2 xmlns="http://namespaces.zope.org/zope" 3 3 xmlns:kofa="http://namespaces.waeup.org/kofa" 4 i18n_domain="waeup. custom"4 i18n_domain="waeup.aaue" 5 5 package="waeup.aaue" 6 6 > -
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.