Changeset 7996 for main/waeup.kofa/trunk/src/waeup/kofa
- Timestamp:
- 28 Mar 2012, 16:32:37 (13 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r7903 r7996 835 835 return 836 836 837 @action(_('Save') )837 @action(_('Save'), style='primary') 838 838 def save(self, **data): 839 839 if self.passport_changed is False: # False is not None! … … 922 922 return 923 923 # Add applicant and create password 924 applicant = createObject( 'waeup.Applicant')924 applicant = createObject(self.context.factory_name) 925 925 self.applyData(applicant, **data) 926 926 self.context.addApplicant(applicant) -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/applicanteditpage.pt
r7811 r7996 62 62 </span> 63 63 </div> 64 <br /> 64 65 65 66 <div tal:condition="view/availableActions"> -
main/waeup.kofa/trunk/src/waeup/kofa/students/workflow.py
r7819 r7996 36 36 transition_id = 'reset1', 37 37 title = _('Reset student'), 38 msg = _(' Student record reset'),38 msg = _('Reset to initial state'), 39 39 source = ADMITTED, 40 40 destination = CREATED), … … 50 50 transition_id = 'reset2', 51 51 title = _('Reset to admitted'), 52 msg = _(" Student record reset to 'admitted'"),52 msg = _("Reset to 'admitted'"), 53 53 source = CLEARANCE, 54 54 destination = ADMITTED), … … 64 64 transition_id = 'reset3', 65 65 title = _('Reset to clearance'), 66 msg = _(" Student record reset to 'clearance'"),66 msg = _("Reset to 'clearance'"), 67 67 source = REQUESTED, 68 68 destination = CLEARANCE), … … 78 78 transition_id = 'reset4', 79 79 title = _('Reset to clearance'), 80 msg = _(" Student record reset to 'clearance'"),80 msg = _("Reset to 'clearance'"), 81 81 source = CLEARED, 82 82 destination = CLEARANCE), … … 92 92 transition_id = 'reset5', 93 93 title = _('Reset to cleared'), 94 msg = _(" Student record reset to 'cleared'"),94 msg = _("Reset to 'cleared'"), 95 95 source = PAID, 96 96 destination = CLEARED), … … 106 106 transition_id = 'reset6', 107 107 title = _('Reset to returning'), 108 msg = _(" Student record reset to 'returning'"),108 msg = _("Reset to 'returning'"), 109 109 source = PAID, 110 110 destination = RETURNING), … … 120 120 transition_id = 'reset7', 121 121 title = _('Reset to paid'), 122 msg = _(" Student record reset to 'paid'"),122 msg = _("Reset to 'paid'"), 123 123 source = REGISTERED, 124 124 destination = PAID), … … 134 134 transition_id = 'reset8', 135 135 title = _('Reset to paid'), 136 msg = _(" Student record reset to 'paid'"),136 msg = _("Reset to 'paid'"), 137 137 source = VALIDATED, 138 138 destination = PAID), … … 141 141 transition_id = 'return', 142 142 title = _('Return'), 143 msg = _( 'Returned'),143 msg = _("Reset to 'returning'"), 144 144 source = VALIDATED, 145 145 destination = RETURNING), … … 148 148 transition_id = 'reset9', 149 149 title = _('Reset to validated'), 150 msg = _(" Student record reset to 'validated'"),150 msg = _("Reset to 'validated'"), 151 151 source = RETURNING, 152 152 destination = VALIDATED),
Note: See TracChangeset for help on using the changeset viewer.