Changeset 9759 for main/waeup.kofa/trunk
- Timestamp:
- 1 Dec 2012, 17:48:59 (12 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r9701 r9759 601 601 else: 602 602 self.flash(_('No student could be created.')) 603 self.redirect(self.url(self.context, u' @@manage')+'?tab2')603 self.redirect(self.url(self.context, u'statistics')) 604 604 return 605 605 -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/viewlets.py
r9070 r9759 125 125 target = 'statistics' 126 126 127 class ApplicantsContainerStatisticsActionButton2(ApplicantsContainerStatisticsActionButton): 127 class ApplicantsContainerStatisticsActionButton2( 128 ApplicantsContainerStatisticsActionButton): 128 129 grok.order(3) 129 130 grok.view(ApplicantsContainerPage) … … 136 137 text = _('Manage container') 137 138 target = 'manage' 139 140 class AllStudentsCreateActionButton(ManageActionButton): 141 grok.order(1) 142 grok.context(IApplicantsContainer) 143 grok.view(ApplicantsStatisticsPage) 144 grok.require('waeup.managePortal') 145 icon = 'actionicon_entrance.png' 146 text = _('Create all student records') 147 target ='createallstudents' 138 148 139 149 class ApplicantViewActionButton(ManageActionButton):
Note: See TracChangeset for help on using the changeset viewer.