Ignore:
Timestamp:
17 Jan 2013, 15:55:22 (12 years ago)
Author:
Henrik Bettermann
Message:

Change button label.

File:
1 edited

Legend:

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

    r9900 r9901  
    138138    target = 'manage'
    139139
    140 class AllStudentsCreateActionButton(ManageActionButton):
     140class ApplicantsRootCreateStudentsActionButton(ManageActionButton):
    141141    grok.order(3)
    142142    grok.context(IApplicantsRoot)
     
    144144    grok.require('waeup.managePortal')
    145145    icon = 'actionicon_entrance.png'
    146     text = _('Create all student records')
     146    text = _('Create students')
    147147    target ='createallstudents'
    148148
    149 class ContainerStudentsCreateActionButton(AllStudentsCreateActionButton):
    150     grok.context(IApplicantsContainer)
    151     grok.order(1)
     149class ApplicantsContainerCreateStudentsActionButton(ManageActionButton):
     150    grok.order(1)
     151    grok.context(IApplicantsContainer)
    152152    grok.view(ApplicantsStatisticsPage)
     153    grok.require('waeup.managePortal')
     154    icon = 'actionicon_entrance.png'
     155    text = _('Create students')
     156    target ='createallstudents'
    153157
    154158class ApplicantViewActionButton(ManageActionButton):
Note: See TracChangeset for help on using the changeset viewer.