Changeset 5186
- Timestamp:
- 10 May 2010, 16:12:04 (15 years ago)
- Location:
- WAeUP_SRP/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/Widgets.py
r5166 r5186 1707 1707 break 1708 1708 if not applicant.pin: 1709 s_logger.info('%s successfully used PIN %s ' % (ref,pin_str))1709 s_logger.info('%s successfully used PIN %s, imported applicant record modified' % (ref,pin_str)) 1710 1710 d = {} 1711 1711 d['reg_no'] = applicant.reg_no … … 1716 1716 elif applicant.pin != pin_str: 1717 1717 s_logger.info('%s/%s tried to enter application record with different PIN %s' % (member_id,ref,pin_str)) 1718 elif applicant.pin == pin_str:1719 s_logger.info('%s/%s repeatedly entered application record with PIN %s' % (member_id,ref,pin_str))1718 #elif applicant.pin == pin_str: 1719 #s_logger.info('%s/%s repeatedly entered application record with PIN %s' % (member_id,ref,pin_str)) 1720 1720 else: 1721 1721 datastructure['reg_no'] = ref … … 1727 1727 s_logger.info('%s tried to use %s application form but has applied for %s' % (ref,screening_type_request,getattr(res[0],'screening_type',None))) 1728 1728 break 1729 s_logger.info('%s/%s repeatedly entered application record with PIN %s' % (member_id,ref,pin_str))1729 #s_logger.info('%s/%s repeatedly entered application record with PIN %s' % (member_id,ref,pin_str)) 1730 1730 else: 1731 s_logger.info('%s successfully used PIN %s ' % (ref,pin_str))1731 s_logger.info('%s successfully used PIN %s, applicant record added' % (ref,pin_str)) 1732 1732 d = {} 1733 1733 d['reg_no'] = ref -
WAeUP_SRP/trunk/profiles/default/vocabularies/application_status.xml
r3689 r5186 7 7 <property name="acl_write_roles">Manager</property> 8 8 9 <item key="entered" msgid=""> APPPIN entered</item>9 <item key="entered" msgid="">PIN entered</item> 10 10 <item key="reset" msgid="">Record reset (not yet re-submitted)</item> 11 11 <item key="edited" msgid="">Record edited (not yet submitted)</item> -
WAeUP_SRP/trunk/profiles/default/vocabularies/screening_types.xml
r5165 r5186 9 9 <item key="pde" msgid="">PUDE</item> 10 10 <item key="cest" msgid="">CEST</item> 11 <item key="dp" msgid="">Diploma</item> 12 <item key="pt" msgid="">Part-Time</item> 13 <item key="ct" msgid="">Certificate</item> 11 14 <item key="sandwich2008" msgid="">Sandwich 2008</item> 12 15 <item key="pce" msgid="">PCE</item> -
WAeUP_SRP/trunk/skins/waeup_student/apply_admission.py
r5165 r5186 41 41 headings['pce'] = 'Apply for PCE Screening (2009/2010)! ' 42 42 headings['sandwich2008'] = 'Apply for Part Time Degree in Education (2008/2009)! ' 43 headings['cest'] = 'Apply for Part-Time Degree or DiplomaProgrammes (2009/2010)! '44 headings['pt'] = 'Apply for Part-Time Degree (2009/2010)! '43 headings['cest'] = 'Apply for Part-Time Degree Programmes (2009/2010)! ' 44 headings['pt'] = 'Apply for Part-Time Degree Programmes (2009/2010)! ' 45 45 headings['dp'] = 'Apply for Diploma Programmes (2009/2010)! ' 46 46 headings['ct'] = 'Apply for Certificate Programmes (2009/2010)! ' … … 126 126 if traverse_subpath and traverse_subpath[0] in screening_types: 127 127 screening_type = traverse_subpath[0] 128 without_reg_no = screening_type in ('prence','cest','sandwich','sandwich2008' )128 without_reg_no = screening_type in ('prence','cest','sandwich','sandwich2008','dp','pt','ct') 129 129 info['expired'] = current.greaterThan(deaddates[screening_type]) 130 130 info['expiration_date'] = deaddates[screening_type] … … 272 272 if submitted: 273 273 mode = "view" 274 logger.info('%s/%s viewsapplication record' % (member,reg_no))274 logger.info('%s/%s is viewing application record' % (member,reg_no)) 275 275 else: 276 276 mode = "edit" 277 logger.info('%s/%s editsapplication record' % (member,reg_no))277 logger.info('%s/%s started editing application record' % (member,reg_no)) 278 278 psm = "" 279 279 if without_reg_no: -
WAeUP_SRP/trunk/skins/waeup_uniben/apply_admission_slip.pt
r5174 r5186 40 40 NOTICE: 41 41 <br /><br /> 42 SCREENING TESTS TAKE PLACE FOR PART TIME (UNDERGRADUATE) CANDIDATES ON SATURDAY, JUNE 5TH, 2010.42 SCREENING TESTS TAKE PLACE FOR PART TIME (UNDERGRADUATE) CANDIDATES ON SATURDAY, JUNE 12TH, 2010. 43 43 PLEASE REPORT TO THE VENUE OF SCREENING BY 7:30 AM. 44 44 </span> 45 45 <span tal:condition="python: screening_test"> 46 46 <br /><br /> 47 PLEASE REPRINT YOUR ACKNOWLEDGEMENT SLIP TO GET SCREENING VENUE AS FROM TUESDAY, JUNE 1ST, 2010.47 PLEASE REPRINT YOUR ACKNOWLEDGEMENT SLIP TO GET SCREENING VENUE AS FROM TUESDAY, JUNE 8TH, 2010. 48 48 </span> 49 49 <span tal:condition="python: screening_test">
Note: See TracChangeset for help on using the changeset viewer.