Changeset 17992
- Timestamp:
- 21 Jan 2025, 19:51:52 (14 hours ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r17985 r17992 773 773 if isinstance(self.context, ApplicantsContainer): 774 774 container_only = True 775 n = 0775 n = 1 776 776 for result in results: 777 777 if container_only and result.__parent__ is not self.context: 778 778 continue 779 n += 1780 779 success, msg = result.createStudent(view=self) 781 780 if success: 782 781 created.append(result.applicant_id) 782 n += 1 783 783 else: 784 784 failed.append( … … 790 790 self.flash(_('Finished.')) 791 791 grok.getSite()['configuration'].maintmode_enabled_by = None 792 self.n = n 792 self.n = n-1 793 793 self.successful = ', '.join(created) 794 794 self.failed = failed
Note: See TracChangeset for help on using the changeset viewer.