Changeset 9853 for main


Ignore:
Timestamp:
9 Jan 2013, 09:57:36 (12 years ago)
Author:
Henrik Bettermann
Message:

Update (and fix) localization.

Omit fees on payment slips.

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  
    11<form tal:attributes="action view/action"
    2     method="POST" i18n:domain="waeup.custom">
     2    method="POST" i18n:domain="waeup.aaue">
    33  <table class="form-table">
    44    <tbody>
  • main/waeup.aaue/trunk/src/waeup/aaue/ftesting.zcml

    r8896 r9853  
    22   xmlns="http://namespaces.zope.org/zope"
    33   xmlns:kofa="http://namespaces.waeup.org/kofa"
    4    i18n_domain="waeup.custom"
     4   i18n_domain="waeup.aaue"
    55   package="waeup.aaue"
    66   >
  • main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py

    r9496 r9853  
    3232    """
    3333    grok.context(ICustomStudentOnlinePayment)
    34     form_fields = grok.AutoFields(ICustomStudentOnlinePayment)
     34    form_fields = grok.AutoFields(ICustomStudentOnlinePayment).omit(
     35        'provider_amt', 'gateway_amt', 'thirdparty_amt')
    3536    form_fields[
    3637        'creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le')
     
    4849    """
    4950    grok.context(ICustomStudentOnlinePayment)
    50     form_fields = grok.AutoFields(ICustomStudentOnlinePayment)
     51    form_fields = grok.AutoFields(ICustomStudentOnlinePayment).omit(
     52        'provider_amt', 'gateway_amt', 'thirdparty_amt')
    5153    form_fields['creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le')
    5254    form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le')
Note: See TracChangeset for help on using the changeset viewer.