Changeset 8840 for main/waeup.aaue/trunk/src/waeup/aaue/applicants
- Timestamp:
- 27 Jun 2012, 12:39:20 (13 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue
- Property svn:mergeinfo changed
/main/waeup.uniben/trunk/src/waeup/uniben merged: 8839
- Property svn:mergeinfo changed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser.py
r8805 r8840 44 44 UG_OMIT_RESULT_SLIP_FIELDS) 45 45 from 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 view54 # """55 # grok.context(ICustomApplicantOnlinePayment)56 46 57 47 class CustomOnlinePaymentBreadcrumb(OnlinePaymentBreadcrumb): … … 174 164 form_fields[ 175 165 'payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') 176 #grok.template('payment_view')177 178 #@property179 #def transaction_code(self):180 # tcode = self.context.p_id181 # return tcode[len(tcode)-8:len(tcode)]182 166 183 167 class CustomApplicationFeePaymentAddPage(ApplicationFeePaymentAddPage): … … 194 178 form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') 195 179 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 180 class 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.