Changeset 7998 for main/waeup.custom/trunk/src/waeup/custom/students
- Timestamp:
- 28 Mar 2012, 20:50:45 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.custom/trunk/src/waeup/custom/students/browser.py
r7995 r7998 24 24 StudentPersonalDisplayFormPage, StudentPersonalManageFormPage, 25 25 StudentClearanceManageFormPage, StudentClearanceEditFormPage, 26 StudentClearanceDisplayFormPage, 26 StudentClearanceDisplayFormPage, OnlinePaymentCallbackPage, 27 27 ExportPDFClearanceSlipPage) 28 28 from waeup.kofa.students.viewlets import RequestCallbackActionButton … … 32 32 ) 33 33 from waeup.custom.interfaces import MessageFactory as _ 34 35 class RequestCallbackActionButton(RequestCallbackActionButton): 36 """ Do not display the base package callback button in custom pages. 37 """ 38 @property 39 def target_url(self): 40 return '' 41 42 class OnlinePaymentCallbackPage(OnlinePaymentCallbackPage): 43 """ Neutralize callback simulation view 44 """ 45 def update(self): 46 return 34 47 35 48 class StudentPersonalDisplayFormPage(StudentPersonalDisplayFormPage): … … 106 119 return form_fields 107 120 108 class RequestCallbackActionButton(RequestCallbackActionButton):109 """ Do not display the base package callback button in custom pages.110 """111 112 @property113 def target_url(self):114 return ''
Note: See TracChangeset for help on using the changeset viewer.