Changeset 3803
- Timestamp:
- 3 Dec 2008, 20:46:12 (16 years ago)
- Location:
- WAeUP_SRP/trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/Widgets.py
r3754 r3803 854 854 else: 855 855 screening_type = 'all' 856 if screening_type in ("all","cest","sandwich","pg" ):856 if screening_type in ("all","cest","sandwich","pg","dp"): 857 857 application_category = screening_type 858 858 else: -
WAeUP_SRP/trunk/profiles/futminna/vocabularies/entry_modes.xml
r3770 r3803 20 20 <item key="ct_pt" msgid="">Certificate Part Time</item> 21 21 <item key="rm_ft" msgid="">Remedial</item> 22 22 <item key="ph_ft" msgid="">Post Higher Education Full Time</item> 23 23 </object> -
WAeUP_SRP/trunk/skins/waeup_student/getStudyCourseInfo.py
r3801 r3803 115 115 (previous_verdict in ('A','B','C','F','J','L','M') or\ 116 116 current_level in ('000','100') or\ 117 (student_record.entry_mode.startswith('de') and current_level == '200')) 117 (student_record.entry_mode.startswith('de') and current_level == '200') or\ 118 (student_record.entry_mode.startswith('ph') and current_level == '300')) 118 119 119 120 missing_data = has_paid and\ … … 121 122 not (previous_verdict or student_record.level) and\ 122 123 not (current_level == '100' or\ 123 (student_record.entry_mode.startswith('de') and current_level == '200')) 124 (student_record.entry_mode.startswith('de') and current_level == '200')or\ 125 (student_record.entry_mode.startswith('ph') and current_level == '300')) 124 126 125 127 info['missing_data'] = missing_data
Note: See TracChangeset for help on using the changeset viewer.