Changeset 8855
- Timestamp:
- 29 Jun 2012, 21:48:09 (12 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/applicant.py
r8843 r8855 125 125 setattr(student, name, getattr(self, name, None)) 126 126 except RequiredMissing, err: 127 return False, _('RequiredMissing: %s' % err)127 return False, 'RequiredMissing: %s' % err 128 128 except: 129 return False, _('Error: %s' % err)129 return False, 'Error: %s' % err 130 130 # Finally prove if the certificate still exists 131 131 try: 132 132 StudentStudyCourse().certificate = self.course_admitted 133 133 except ConstraintNotSatisfied, err: 134 return False, _('ConstraintNotSatisfied: %s' % self.course_admitted.code)134 return False, 'ConstraintNotSatisfied: %s' % self.course_admitted.code 135 135 # Add student 136 136 site = grok.getSite() -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/applicantregemailsent.pt
r8629 r8855 29 29 <tr> 30 30 </table> 31 <p i18n:translate="">32 Print this page and proceed to the31 <p> 32 <span i18n:translate="">Print this page and proceed to the</span> 33 33 <a tal:attributes="href python: view.url(layout.site, 'login')">login form</a>. 34 Please note that passwords are case-sensitive,34 <span i18n:translate="">Please note that passwords are case-sensitive, 35 35 <br />when entering your credentials, and keep your password secret! 36 </span> 36 37 </p> 37 38 <p tal:condition = "view/email"> -
main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/requestpwmailsent.pt
r8782 r8855 29 29 <tr> 30 30 </table> 31 <p i18n:translate="">32 Print this page and proceed to the31 <p> 32 <span i18n:translate="">Print this page and proceed to the</span> 33 33 <a tal:attributes="href python: view.url(layout.site, 'login')">login form</a>. 34 Please note that passwords are case-sensitive,34 <span i18n:translate="">Please note that passwords are case-sensitive, 35 35 <br />when entering your credentials, and keep your password secret! 36 </span> 36 37 </p> 37 38 <p tal:condition = "view/email">
Note: See TracChangeset for help on using the changeset viewer.