Changeset 2802 for WAeUP_SRP/base/skins/waeup_student
- Timestamp:
- 28 Nov 2007, 08:53:45 (17 years ago)
- Location:
- WAeUP_SRP/base/skins/waeup_student
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/skins/waeup_student/apply_admission.py
r2743 r2802 39 39 headings['prence'] = 'Apply for Pre-NCE Programme (2007/2008)! ' 40 40 headings['pce'] = 'Apply for PCE Screening (2007/2008)! ' 41 headings['cest'] = 'Apply for Common Entrance Screening Test(2007/2008)! '41 headings['cest'] = 'Apply for Part-Time Degree and Diploma Programmes (2007/2008)! ' 42 42 #headings['pt'] = 'Apply for Local/Part-Time Programmes (2007/2008)' 43 43 -
WAeUP_SRP/base/skins/waeup_student/apply_admission_form.pt
r2743 r2802 7 7 expired info/expired; 8 8 venue_display python:False; 9 deadline info/deadline 9 deadline info/deadline; 10 10 " 11 11 > … … 67 67 <metal:block tal:condition="venue_display"> 68 68 <br /> 69 <strong>< a href="http://uniben.waeup.org/Post_UDE_Provisional_Venues.rtf">Post UDE Screening (2007/2008) - Provisional Venue</a></strong>69 <strong></strong> 70 70 <br /> <br /> 71 71 </metal:block> -
WAeUP_SRP/base/skins/waeup_student/apply_admission_manage_form.pt
r2801 r2802 2 2 portal_status_message options/psm|nothing; 3 3 reg_no options/reg_no|nothing; 4 app_no options/app_no|nothing; 4 serial options/ds/serial|nothing; 5 ccode options/ds/course1|nothing; 6 ccode python:ccode[:2]; 7 app_no string:${ccode}${serial}/07; 5 8 ds options/ds|nothing; 9 screening_type options/ds/screening_type; 10 cest python: screening_type == 'cest'; 6 11 " 7 12 > … … 54 59 55 60 <span tal:condition="rendered_main"> 56 <h3>Application Record <span tal:replace="reg_no"/> (<span tal:replace="app_no"/>)</h3> 61 <h3>Application Record <span tal:replace="reg_no"/> 62 <span tal:condition="python: cest and ccode" tal:replace="string:(${app_no})" /> 63 </h3> 57 64 <br /> 58 65 <div tal:replace="structure rendered_main" /> -
WAeUP_SRP/base/skins/waeup_student/apply_admission_slip.pt
r2493 r2802 6 6 name python:ds['lastname']; 7 7 info options/info; 8 serial options/ds/serial|nothing; 9 ccode options/ds/course1|nothing; 10 ccode python:ccode[:2]; 11 app_no string:${ccode}${serial}/07; 12 screening_type options/ds/screening_type; 13 cest python: screening_type == 'cest'; 8 14 " 9 15 > … … 13 19 <h3 tal:content="info/heading_slip" /> 14 20 <br /> 21 22 <tal:block condition="python: cest and ccode"> 23 24 <table><tr><td> 25 <strong>Application Number for the Screening Test: <span tal:replace="app_no" /></strong> 26 </td></tr></table> 27 <br /> 28 </tal:block> 29 15 30 <div tal:replace="structure rendered_main" /> 16 31
Note: See TracChangeset for help on using the changeset viewer.