Changeset 7674 for main/waeup.sirp/trunk/src/waeup/sirp/applicants
- Timestamp:
- 22 Feb 2012, 08:27:56 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/viewlets.py
r7438 r7674 17 17 ## 18 18 import grok 19 import zope.i18nmessageid 19 20 from hurry.workflow.interfaces import IWorkflowState 20 21 from waeup.sirp.interfaces import ISIRPObject … … 30 31 ) 31 32 33 _ = zope.i18nmessageid.MessageFactory('waeup.sirp') 34 32 35 grok.context(ISIRPObject) # Make ISIRPObject the default context 33 36 grok.templatedir('browser_templates') … … 40 43 grok.require('waeup.viewApplicantsTab') 41 44 pnav = 3 42 tab_title = u'Applicants'45 tab_title = _(u'Applicants') 43 46 44 47 @property … … 53 56 """ 54 57 grok.require('waeup.Anonymous') 55 tab_title = u'Application'58 tab_title = _(u'Application') 56 59 57 60 # Also zope.manager has role Anonymous.
Note: See TracChangeset for help on using the changeset viewer.