Changeset 783 for WAeUP_SRP/trunk
- Timestamp:
- 5 Nov 2006, 15:03:32 (18 years ago)
- Location:
- WAeUP_SRP/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/Widgets.py
r780 r783 229 229 err = 0 230 230 if len(value.split()) > 1: 231 err = 'Invalid Id (Id contains space(s)'231 err = 'Invalid Id, Id contains space(s).' 232 232 elif self.portal_catalog(portal_type=portal_type_query,id=value): 233 err = 'An object with the Id %s already exists in the Academic section' % (value)233 err = 'An object with the Id %s already exists in the Academic Section.' % (value) 234 234 if err: 235 235 datastructure.setError(widget_id, err) … … 299 299 err = 0 300 300 if not (len(value) == self.digits + self.letters and value[:self.digits].isdigit() and value[self.digits:].isalpha()): 301 err = 'Invalid Registration Number in the format: %s%s with N = Number, L = Letter' % (self.digits_str,self.letters_str)301 err = 'Invalid number, the expected format is: %s%s with N = Number, L = Letter' % (self.digits_str,self.letters_str) 302 302 else: 303 303 s = getStudentByRegNo(self,value) … … 389 389 while 1: 390 390 if ok == -2: 391 err = 'You have already applied with a different P in, please login.'391 err = 'You have already applied with a different PIN, please login.' 392 392 break 393 393 elif ok == -1: 394 err = ' invalid Pin'394 err = 'Invalid PIN' 395 395 break 396 396 if ok == 0: 397 err = 'P inalready used'397 err = 'PIN already used' 398 398 break 399 399 if ok >= 1: -
WAeUP_SRP/trunk/skins/waeup_student/login_student.pt
r610 r783 17 17 the student record. Do not confuse with your Registration or Matriculation Number!</p> 18 18 19 <p>During the admission and clearance process the <strong>Password</strong>, which has to be entered here, corresponds with the last 20 10 digits of your Access Card PIN. You cannot change the Password (or better Passnumber). After clearance you will be requested to choose your own 21 password.</p> 19 <p>During the admission and clearance process the <strong>Password</strong> corresponds with the last 20 10 digits of your Access Card PIN.</p> 22 21 23 22 <br /> -
WAeUP_SRP/trunk/skins/waeup_student/pume_anon_view.pt
r779 r783 23 23 <span tal:omit-tag="" 24 24 tal:content="structure python: pume_doc.render(proxy=pume_doc, 25 layout_mode='view ',25 layout_mode='view_slip', 26 26 layout_id='student_pume_fe')" 27 27 />
Note: See TracChangeset for help on using the changeset viewer.