1 | <tal:block define="rendered_main options/rendered|nothing; |
---|
2 | portal_status_message options/psm|nothing; |
---|
3 | reg_no options/reg_no|nothing; |
---|
4 | serial options/ds/serial|nothing; |
---|
5 | ccode options/ds/course1|nothing; |
---|
6 | ds options/ds|nothing; |
---|
7 | "> |
---|
8 | <metal:block define-macro="edit_form"> |
---|
9 | <metal:block use-macro="here/main_template/macros/master"> |
---|
10 | <metal:block fill-slot="main"> |
---|
11 | |
---|
12 | <form action="" id="editForm" method="post" |
---|
13 | enctype="multipart/form-data" class="workflow" |
---|
14 | tal:attributes="action string:${context/absolute_url}/apply_admission_manage" |
---|
15 | > |
---|
16 | |
---|
17 | <span tal:condition="not: rendered_main"> |
---|
18 | <h3>Application Process</h3> |
---|
19 | <br /> |
---|
20 | |
---|
21 | <table tal:define="info_applicants context/getApplicantsStatistics"> |
---|
22 | <tr> |
---|
23 | <td>PUME Applicants (status submitted):</td> |
---|
24 | <td><span tal:replace="info_applicants/submitted_pume" /></td> |
---|
25 | </tr> |
---|
26 | <tr> |
---|
27 | <td>2nd choice PUME Applicants (status submitted):</td> |
---|
28 | <td><span tal:replace="info_applicants/submitted_pume2" /></td> |
---|
29 | </tr> |
---|
30 | <tr> |
---|
31 | <td>PUDE Applicants (status submitted):</td> |
---|
32 | <td><span tal:replace="info_applicants/submitted_pde" /></td> |
---|
33 | </tr> |
---|
34 | <tr> |
---|
35 | <td>2nd choice PUDE Applicants (status submitted):</td> |
---|
36 | <td><span tal:replace="info_applicants/submitted_pde2" /></td> |
---|
37 | </tr> |
---|
38 | <tr> |
---|
39 | <td>CEST Applicants (status submitted):</td> |
---|
40 | <td><span tal:replace="info_applicants/submitted_cest" /></td> |
---|
41 | </tr> |
---|
42 | <tr> |
---|
43 | <td>Sandwich Applicants (status submitted):</td> |
---|
44 | <td><span tal:replace="info_applicants/submitted_sandwich" /></td> |
---|
45 | </tr> |
---|
46 | <tr> |
---|
47 | <td>Diploma Applicants (status submitted):</td> |
---|
48 | <td><span tal:replace="info_applicants/submitted_dp" /></td> |
---|
49 | </tr> |
---|
50 | <tr> |
---|
51 | <td>All Applicants (status admitted):</td> |
---|
52 | <td><span tal:replace="info_applicants/admitted" /></td> |
---|
53 | </tr> |
---|
54 | <tr> |
---|
55 | <td>All Applicants (status student record created):</td> |
---|
56 | <td><span tal:replace="info_applicants/created" /></td> |
---|
57 | </tr> |
---|
58 | <tr> |
---|
59 | <td>All Applicants (status not admitted):</td> |
---|
60 | <td><span tal:replace="info_applicants/not_admitted" /></td> |
---|
61 | </tr> |
---|
62 | </table> |
---|
63 | |
---|
64 | <br/> |
---|
65 | |
---|
66 | <div class="label">Registration No:</div> |
---|
67 | <input type="text" name="reg_no" size="15" |
---|
68 | /> |
---|
69 | <input type="submit" class="standalone" |
---|
70 | name="search" |
---|
71 | value="Search" |
---|
72 | /> |
---|
73 | </span> |
---|
74 | |
---|
75 | <span tal:condition="rendered_main"> |
---|
76 | <h3>Application Record <span tal:replace="reg_no"/> |
---|
77 | <tal:block condition="python: ds['screening_type'] in ('cest','sandwich2008') and ccode"> |
---|
78 | (<span tal:replace="python:'%s%s/%s' % (ccode[:3],serial,context.getSessionId()[0])" />) |
---|
79 | </tal:block> |
---|
80 | </h3> |
---|
81 | <br /> |
---|
82 | <div tal:replace="structure rendered_main" /> |
---|
83 | |
---|
84 | <input type="hidden" name="reg_no" |
---|
85 | tal:attributes="value reg_no|nothing" |
---|
86 | /> |
---|
87 | <input type="submit" class="standalone" |
---|
88 | name="reset" |
---|
89 | value="Reset" |
---|
90 | tal:condition="python: ds['status'] and 'submitted' in ds['status']" |
---|
91 | /> |
---|
92 | |
---|
93 | |
---|
94 | <input type="submit" class="standalone" |
---|
95 | name="edit" |
---|
96 | value="Save" |
---|
97 | /> |
---|
98 | |
---|
99 | <br /><br /> |
---|
100 | |
---|
101 | |
---|
102 | <div class="label">Registration No:</div> |
---|
103 | <input type="text" name="new_reg_no" size="15" |
---|
104 | /> |
---|
105 | <input type="submit" class="standalone" |
---|
106 | name="search" |
---|
107 | value="Search next" |
---|
108 | /> |
---|
109 | </span> |
---|
110 | </form> |
---|
111 | |
---|
112 | <br/> |
---|
113 | |
---|
114 | |
---|
115 | |
---|
116 | </metal:block> |
---|
117 | </metal:block> |
---|
118 | </metal:block> |
---|
119 | </tal:block> |
---|