Changeset 16959
- Timestamp:
- 13 Jun 2022, 14:27:05 (2 years ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/CHANGES.txt
r16955 r16959 5 5 ======================= 6 6 7 * Enable customization of application form final submission message. 8 7 9 * Copy applicant_id into reg_number field during student record creation, 8 if reg_number is not set.10 if applicant's reg_number is not set. 9 11 10 12 * Show last student id on `StudentsContainerPage`. -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r16578 r16959 1369 1369 return failed, emails_sent 1370 1370 1371 def _finalsubmit_msg(self, applicant): 1372 return _('Form has been submitted.') 1373 1371 1374 @action(_('Finally Submit'), warning=WARNING) 1372 1375 def finalsubmit(self, **data): … … 1389 1392 type='danger') 1390 1393 return 1391 msg = _('Form has been submitted.')1394 msg = self._finalsubmit_msg(self.context) 1392 1395 # Create mandates and send emails to referees 1393 1396 if getattr(self.context, 'referees', None):
Note: See TracChangeset for help on using the changeset viewer.