- Timestamp:
- 11 May 2011, 14:29:40 (14 years ago)
- Location:
- WAeUP_SRP/trunk/skins/waeup_fceokene
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_fceokene/apply_admission.py
r5234 r6046 38 38 headings['prence'] = 'Apply for Pre-NCE Programme (2010/2011)! ' 39 39 headings['pce'] = 'Apply for PCE Screening Test (2010/2011)! ' 40 headings['cest'] = 'Apply for Diploma Programme (20 09/2010)! '41 headings['sandwich'] = 'Apply for Sandwich Programme (201 0/2011)! '40 headings['cest'] = 'Apply for Diploma Programme (2011/2012)! ' 41 headings['sandwich'] = 'Apply for Sandwich Programme (2011/2012)! ' 42 42 43 43 configuration += ('heading',headings), … … 45 45 headings_slip['prence'] = 'Pre-NCE Application (2010/2011) Acknowledgement Slip' 46 46 headings_slip['pce'] = 'PCE Screening (2010/2011) Acknowledgement Slip' 47 headings_slip['cest'] = 'Application for Diploma Programme (20 09/2010) Acknowledgement Slip'48 headings_slip['sandwich'] = 'Application for Sandwich Programme (201 0/2011) Acknowledgement Slip'47 headings_slip['cest'] = 'Application for Diploma Programme (2011/2012) Acknowledgement Slip' 48 headings_slip['sandwich'] = 'Application for Sandwich Programme (2011/2012) Acknowledgement Slip' 49 49 configuration += ('heading_slip',headings_slip), 50 50 -
WAeUP_SRP/trunk/skins/waeup_fceokene/apply_admission_manage_form.pt
r3690 r6046 19 19 20 20 <table tal:define="info_applicants context/getApplicantsStatistics"> 21 <tr> 22 <td>Diploma Applicants (status submitted):</td> 23 <td><span tal:replace="info_applicants/submitted_cest" /></td> 24 </tr> 25 <tr> 26 <td>Sandwich Applicants (status submitted):</td> 27 <td><span tal:replace="info_applicants/submitted_sandwich" /></td> 28 </tr> 21 29 <tr> 22 30 <td>PCE Applicants (status submitted):</td> -
WAeUP_SRP/trunk/skins/waeup_fceokene/getApplicantsStatistics.py
r3690 r6046 22 22 23 23 info = {} 24 res_submitted_pce = context.applicants_catalog(status = 'submitted', screening_type = 'cest') 25 res_submitted_pce = context.applicants_catalog(status = 'submitted', screening_type = 'sandwich') 24 26 res_submitted_pce = context.applicants_catalog(status = 'submitted', screening_type = 'pce') 27 res_submitted_prence = context.applicants_catalog(status = 'submitted', screening_type = 'prence') 25 28 res_not_admitted = context.applicants_catalog(status = 'not admitted') 26 res_submitted_prence = context.applicants_catalog(status = 'submitted', screening_type = 'prence')27 29 res_admitted = context.applicants_catalog(status = 'admitted') 28 30 res_created = context.applicants_catalog(status = 'created') 29 31 32 info['submitted_cest'] = len(res_submitted_cest) 33 info['submitted_sandwich'] = len(res_submitted_sandwich) 34 info['submitted_prence'] = len(res_submitted_prence) 30 35 info['submitted_pce'] = len(res_submitted_pce) 31 36 info['admitted'] = len(res_admitted) 32 37 info['not_admitted'] = len(res_not_admitted) 33 info['submitted_prence'] = len(res_submitted_prence)34 38 info['created'] = len(res_created) 35 39
Note: See TracChangeset for help on using the changeset viewer.