Changeset 6336 for main/waeup.sirp/trunk/src
- Timestamp:
- 10 Jun 2011, 14:59:21 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser.py
r6332 r6336 243 243 grok.context(IWAeUPObject) 244 244 grok.order(3) 245 grok.require('waeup. manageApplications')245 grok.require('waeup.Public') 246 246 grok.template('primarynavtab') 247 247 … … 276 276 277 277 class ApplicantsContainerManageActionButton(ManageActionButton): 278 grok.order(1) 278 279 grok.context(IApplicantsContainer) 279 280 grok.view(ApplicantsContainerPage) … … 281 282 text = 'Manage applicants container' 282 283 284 class LoginApplicantActionButton(ManageActionButton): 285 grok.order(2) 286 grok.context(IApplicantsContainer) 287 grok.view(ApplicantsContainerPage) 288 grok.require('waeup.Anonymous') 289 icon = 'login.png' 290 text = 'Login for applicants' 291 target = 'login' 283 292 284 293 class ApplicantsContainerManageFormPage(WAeUPEditFormPage): … … 374 383 def delLocalRoles(self, **data): 375 384 return del_local_roles(self,3,**data) 376 377 385 378 386 class LoginApplicant(WAeUPPage):
Note: See TracChangeset for help on using the changeset viewer.