Ignore:
Timestamp:
27 Jun 2012, 12:39:20 (13 years ago)
Author:
Henrik Bettermann
Message:

Merged with waeup.uniben 8838:HEAD.

Location:
main/waeup.aaue/trunk/src/waeup/aaue
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue

  • main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser.py

    r8805 r8840  
    4444    UG_OMIT_RESULT_SLIP_FIELDS)
    4545from waeup.aaue.interfaces import MessageFactory as _
    46 
    47 #class RequestCallbackActionButton(RequestCallbackActionButton):
    48 #    """ Display the base package callback button in custom pages.
    49 #    """
    50 #    grok.context(ICustomApplicantOnlinePayment)
    51 
    52 #class CustomOnlinePaymentCallbackPage(OnlinePaymentCallbackPage):
    53 #    """ Activate callback simulation view
    54 #    """
    55 #    grok.context(ICustomApplicantOnlinePayment)
    5646
    5747class CustomOnlinePaymentBreadcrumb(OnlinePaymentBreadcrumb):
     
    174164    form_fields[
    175165        'payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le')
    176     #grok.template('payment_view')
    177 
    178     #@property
    179     #def transaction_code(self):
    180     #    tcode = self.context.p_id
    181     #    return tcode[len(tcode)-8:len(tcode)]
    182166
    183167class CustomApplicationFeePaymentAddPage(ApplicationFeePaymentAddPage):
     
    194178    form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le')
    195179
    196 #    @property
    197 #    def note(self):
    198 #        if self.context.p_state == 'paid':
    199 #            return None
    200 #        tcode = self.context.p_id
    201 #        tcode = tcode[len(tcode)-8:len(tcode)]
    202 #        amount = self.context.amount_auth
    203 #        note = translate(_(
    204 #            u"""<br /><br /><br />
    205 #The tranzaction code is <strong>${a}</strong>.""",
    206 #            mapping = {'a':tcode}))
    207 #        return note
     180class CustomApplicantRegistrationPage(ApplicantRegistrationPage):
     181    """Captcha'd registration page for applicants.
     182    """
     183
     184    #def _redirect(self, email, password, applicant_id):
     185    #    # Forward email and credentials to landing page.
     186    #    self.redirect(self.url(self.context, 'registration_complete',
     187    #        data = dict(email=email, password=password,
     188    #        applicant_id=applicant_id)))
     189    #    return
Note: See TracChangeset for help on using the changeset viewer.