Changeset 15497


Ignore:
Timestamp:
15 Jul 2019, 19:34:12 (5 years ago)
Author:
Henrik Bettermann
Message:

Extend traverse method of ApplicantsContainer? (requested by DSPG).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/container.py

    r13570 r15497  
    121121        """Deliver virtual export container.
    122122        """
     123        # create a virtual exports container and return it
     124        container = VirtualApplicantsExportJobContainer()
    123125        if name == 'exports':
    124             # create a virtual exports container and return it
    125             container = VirtualApplicantsExportJobContainer()
    126126            zope.location.location.located(container, self, 'exports')
     127            return container
     128        if name == 'bursary_exports':
     129            zope.location.location.located(container, self, 'bursary_exports')
    127130            return container
    128131        return None
Note: See TracChangeset for help on using the changeset viewer.