- Timestamp:
- 8 Mar 2012, 19:00:51 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/viewlets.py
r7714 r7811 18 18 import grok 19 19 from hurry.workflow.interfaces import IWorkflowState 20 from waeup. sirp.interfaces import ISIRPObject21 from waeup. sirp.students.viewlets import PrimaryStudentNavTab22 from waeup. sirp.browser.viewlets import ManageActionButton, PrimaryNavTab23 from waeup. sirp.applicants.interfaces import (20 from waeup.kofa.interfaces import IKOFAObject 21 from waeup.kofa.students.viewlets import PrimaryStudentNavTab 22 from waeup.kofa.browser.viewlets import ManageActionButton, PrimaryNavTab 23 from waeup.kofa.applicants.interfaces import ( 24 24 IApplicant, IApplicantsRoot, IApplicantsContainer, 25 25 IApplicantOnlinePayment, 26 26 ) 27 from waeup. sirp.applicants.browser import (27 from waeup.kofa.applicants.browser import ( 28 28 ApplicantsRootPage, ApplicantsContainerPage, ApplicantManageFormPage, 29 29 ApplicantDisplayFormPage, OnlinePaymentDisplayFormPage 30 30 ) 31 31 32 from waeup. sirp.interfaces import MessageFactory as _32 from waeup.kofa.interfaces import MessageFactory as _ 33 33 34 grok.context(I SIRPObject) # Make ISIRPObject the default context34 grok.context(IKOFAObject) # Make IKOFAObject the default context 35 35 grok.templatedir('browser_templates') 36 36 … … 38 38 """Applicants tab in primary navigation. 39 39 """ 40 grok.context(I SIRPObject)40 grok.context(IKOFAObject) 41 41 grok.order(3) 42 42 grok.require('waeup.viewApplicantsTab')
Note: See TracChangeset for help on using the changeset viewer.