Changeset 9901 for main/waeup.kofa/trunk/src/waeup/kofa
- Timestamp:
- 17 Jan 2013, 15:55:22 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/viewlets.py
r9900 r9901 138 138 target = 'manage' 139 139 140 class A llStudentsCreateActionButton(ManageActionButton):140 class ApplicantsRootCreateStudentsActionButton(ManageActionButton): 141 141 grok.order(3) 142 142 grok.context(IApplicantsRoot) … … 144 144 grok.require('waeup.managePortal') 145 145 icon = 'actionicon_entrance.png' 146 text = _('Create all student records')146 text = _('Create students') 147 147 target ='createallstudents' 148 148 149 class ContainerStudentsCreateActionButton(AllStudentsCreateActionButton):150 grok. context(IApplicantsContainer)151 grok. order(1)149 class ApplicantsContainerCreateStudentsActionButton(ManageActionButton): 150 grok.order(1) 151 grok.context(IApplicantsContainer) 152 152 grok.view(ApplicantsStatisticsPage) 153 grok.require('waeup.managePortal') 154 icon = 'actionicon_entrance.png' 155 text = _('Create students') 156 target ='createallstudents' 153 157 154 158 class ApplicantViewActionButton(ManageActionButton):
Note: See TracChangeset for help on using the changeset viewer.