Changeset 5845 for main/waeup.sirp/trunk/src
- Timestamp:
- 12 Mar 2011, 08:18:49 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser.py
r5844 r5845 38 38 AddActionButton, ManageActionButton, PrimaryNavTab, 39 39 ) 40 from waeup.sirp.browser.breadcrumbs import Breadcrumb 40 41 from waeup.sirp.applicants import get_applicant_data, ResultEntry 41 42 from waeup.sirp.applicants.interfaces import ( … … 192 193 return result 193 194 195 class ApplicantsRootBreadcrumb(Breadcrumb): 196 """A breadcrumb for applicantsroot. 197 """ 198 grok.context(IApplicantsRoot) 199 title = u'Applicants' 200 201 class ApplicantsContainerBreadcrumb(Breadcrumb): 202 """A breadcrumb for applicantscontainers. 203 """ 204 grok.context(IApplicantsContainer) 194 205 195 206 class ApplicantsTab(PrimaryNavTab): … … 298 309 label = 'Edit container' 299 310 title = label 300 pnav = 2311 pnav = 3 301 312 302 313 def update(self): … … 369 380 return 'Apply for Post UDE Screening Test (2009/2010)' 370 381 title = 'Edit Application' 371 pnav = 1382 pnav = 3 372 383 373 384 @grok.action('Save')
Note: See TracChangeset for help on using the changeset viewer.