Ignore:
Timestamp:
10 Mar 2011, 17:20:56 (14 years ago)
Author:
uli
Message:
  • Add manage button on applicants container default page.
  • Add manage page for applicants containers.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser.py

    r5830 r5832  
    207207    label = 'Applicants Container'
    208208    pnav = 2
    209    
     209
     210class ManageApplicantsContainerActionButton(ManageActionButton):
     211    grok.context(IApplicantsContainer)
     212    grok.view(ApplicantsContainerPage)
     213    text = 'Manage'
     214
     215class ApplicantsContainerEditPage(WAeUPPage):
     216    grok.context(IApplicantsContainer)
     217    grok.name('manage')
     218
     219    title = 'Manage Applicants Container'
     220    label = 'Manage Applicants Container'
     221    pnav = 2
     222
    210223
    211224#class AddApplicant(WAeUPAddFormPage):
Note: See TracChangeset for help on using the changeset viewer.