Changeset 2374 for WAeUP_SRP/base
- Timestamp:
- 17 Oct 2007, 19:36:22 (17 years ago)
- Location:
- WAeUP_SRP/base/skins/waeup_student
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/skins/waeup_student/apply_admission.py
r2340 r2374 86 86 headings = {} 87 87 headings['pume'] = 'Apply for Post UME Screening Test (2007/2008)! ' 88 headings['pde'] = 'Apply for Post DE Screening Test (2007/2008)! '88 headings['pde'] = 'Apply for Post UDE Screening Test (2007/2008)! ' 89 89 headings['prence'] = 'Apply for Pre-NCE Programme (2007/2008)! ' 90 90 headings['pce'] = 'Apply for PCE Screening (2007/2008)! ' … … 92 92 headings_slip = {} 93 93 headings_slip['pume'] = 'Post UME Screening (2007/2008) Aknowledgement Slip!' 94 headings_slip['pde'] = 'Post DE Screening (2007/2008) Aknowledgement Slip'94 headings_slip['pde'] = 'Post UDE Screening (2007/2008) Aknowledgement Slip' 95 95 headings_slip['prence'] = 'Pre-NCE Application (2007/2008) Aknowledgement Slip' 96 96 headings_slip['pce'] = 'PCE Screening (2007/2008) Aknowledgement Slip' 97 97 headings_slip['cest'] = 'Common Entrance Screening (2007/2008) Aknowledgement Slip' 98 99 deadline = {} 100 deadline['pume'] = '[Date of PUME Deadline]' 101 deadline['pde'] = '[Date of PUDE Deadline]' 102 deadline['prence'] = '[Date of PRENCE Deadline]' 103 deadline['pce'] = '[Date of PCE Deadline]' 104 deadline['cest'] = '[Date of CEST Deadline]' 105 98 106 info = {} 107 99 108 if traverse_subpath and traverse_subpath[0] in screening_types: 100 109 screening_type = info['screening_type'] = traverse_subpath[0] 101 110 info['heading'] = headings[screening_type] 102 111 info['heading_slip'] = headings_slip[screening_type] 112 info['deadline'] = deadline[screening_type] 103 113 layout = "application_%s" % screening_type 104 114 without_reg_no = screening_type in ('prence',) … … 111 121 info['heading'] = headings[screening_type] 112 122 info['heading_slip'] = headings_slip[screening_type] 123 info['deadline'] = deadline[screening_type] 113 124 layout = "application_%s" % screening_type 114 125 without_reg_no = screening_type in ('prence',) -
WAeUP_SRP/base/skins/waeup_student/apply_admission_form.pt
r2371 r2374 6 6 info options/info; 7 7 expired python:not info['screening_type']=='pde'; 8 deadline info/deadline 8 9 " 9 10 > … … 71 72 </ul> 72 73 <br /> 73 <font color="red">Application submission deadline is at Midnight on Thursday, 6th September 2007.74 <font color="red">Application submission deadline is at Midnight on <span tal:content="deadline" />. 74 75 No application will be treated after the deadline. </font> 75 76 </metal:block> -
WAeUP_SRP/base/skins/waeup_student/apply_admission_slip.pt
r2328 r2374 16 16 17 17 The applicant has confirmed that the picture shown on this slip is a true picture of him/her. 18 18 <br /><br /> 19 <font color="red"> 20 Notice: Please come back and check for the screening venue as from 30th October. 21 </font> 19 22 </metal:block> 20 23 </metal:block>
Note: See TracChangeset for help on using the changeset viewer.