Ignore:
Timestamp:
26 Sep 2013, 09:37:25 (11 years ago)
Author:
Henrik Bettermann
Message:

Implement an VirtualApplicantsExportJobContainer? which allows to export applicants locally. On each container page there is now an'Export applicants' button which directs to the exports overview page. Unlike student exporters, the applicants exporter can't be configured. It just exports all applicants in the container.

File:
1 edited

Legend:

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

    r10644 r10655  
    138138    target = 'manage'
    139139
     140class ExportApplicantsActionButton(ManageActionButton):
     141    """ 'Export applicants' button for faculties.
     142    """
     143    grok.context(IApplicantsContainer)
     144    grok.view(ApplicantsContainerPage)
     145    grok.require('waeup.manageApplication')
     146    icon = 'actionicon_down.png'
     147    text = _('Export applicants')
     148    target = 'exports'
     149    grok.order(4)
     150
    140151class ApplicantsRootCreateStudentsActionButton(ManageActionButton):
    141152    grok.order(3)
Note: See TracChangeset for help on using the changeset viewer.