- Timestamp:
- 21 Sep 2012, 08:19:35 (12 years ago)
- Location:
- main/waeup.kofa/branches/uli-zc-async
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/uli-zc-async
- Property svn:mergeinfo changed
/main/waeup.kofa/branches/uli-async-update removed /main/waeup.kofa/branches/uli-autoinclude-less removed /main/waeup.kofa/trunk removed
- Property svn:mergeinfo changed
-
main/waeup.kofa/branches/uli-zc-async/src/waeup/kofa/applicants/viewlets.py
r9209 r9211 183 183 """Get a URL to the target... 184 184 """ 185 if self.context.state in ('initialized', 'started' , 'paid'):185 if self.context.state in ('initialized', 'started'): 186 186 return 187 187 return self.view.url(self.view.context, self.target) … … 204 204 205 205 class PaymentReceiptActionButton(ManageActionButton): 206 grok.order( 9) # This button should always be the last one.206 grok.order(1) 207 207 grok.context(IApplicantOnlinePayment) 208 208 grok.view(OnlinePaymentDisplayFormPage) … … 219 219 220 220 class ApprovePaymentActionButton(ManageActionButton): 221 grok.order( 8)221 grok.order(2) 222 222 grok.context(IApplicantOnlinePayment) 223 223 grok.view(OnlinePaymentDisplayFormPage)
Note: See TracChangeset for help on using the changeset viewer.