Changeset 1172
- Timestamp:
- 2 Jan 2007, 07:17:06 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_student/portlet_student_workflow_display.pt
r1072 r1172 2 2 info item/getStudentWorkflowInfo;" 3 3 condition="context/isStudent"> 4 <table class="registration" tal:condition="info|nothing"> 4 5 <table class="registration" tal:condition="python:info and info['review_state'] in ('application_pin_entered', 6 'admission_applied', 7 'pume_passed', 8 'pume_failed', 9 'admitted', 10 'admission_rejected', 11 'objection_raised', 12 'clearance_pin_entered', 13 'clearance_requested', 14 'cleared_and_validated', 15 'deferred', 16 )"> 5 17 <span tal:condition="python:path('info/review_state')=='application_pin_entered'"> 6 18 <tr><td class="active"> 7 <a href="" tal:attributes="href string:${info/url}/application_edit ">19 <a href="" tal:attributes="href string:${info/url}/application_edit_form"> 8 20 Admission started 9 21 </a> … … 15 27 </td></tr> 16 28 </span> 17 18 29 <span tal:condition="python:path('info/review_state')=='admission_applied'"> 19 30 <tr><td class="active"> … … 28 39 </td></tr> 29 40 </span> 30 31 32 41 <span tal:condition="python:path('info/review_state')=='pume_passed'"> 33 42 <tr><td class="active">PUME passed</td></tr> … … 39 48 <tr><td>PUME passed</td></tr> 40 49 </span> 41 42 50 <span tal:condition="python:path('info/review_state')=='admitted'"> 43 51 <tr> … … 61 69 </tr> 62 70 </span> 63 64 71 <span tal:condition="python:path('info/review_state')=='objection_raised'"> 65 72 <tr> … … 74 81 <tr><td>Objection raised</td></tr> 75 82 </span> 76 77 83 <span tal:condition="python:path('info/review_state')=='clearance_pin_entered'"> 78 84 <tr> … … 87 93 <tr><td>Clearance started</td></tr> 88 94 </span> 89 90 95 <span tal:condition="python:path('info/review_state')=='clearance_requested'"> 91 96 <tr><td class="active">Clearance requested</td></tr> … … 94 99 <tr><td>Clearance requested</td></tr> 95 100 </span> 96 97 101 <span tal:condition="python:path('info/review_state')=='cleared_and_validated'"> 98 102 <tr><td class="active">Cleared</td></tr> … … 101 105 <tr><td>Cleared</td></tr> 102 106 </span> 103 104 107 <span tal:condition="python:path('info/review_state')=='deferred'"> 105 108 <tr><td class="active">Admission deferred</td></tr> … … 108 111 <tr><td>Admission deferred</td></tr> 109 112 </span> 113 </table> 110 114 115 <table class="registration" tal:condition="python:info and info['review_state'] in ('returning', 116 'school_fee_pin_entered', 117 'courses_registered', 118 'courses_validated', 119 )"> 120 <span tal:condition="python:info['review_state']=='returning'"> 121 <tr><td class="active"> 122 <a href="" tal:attributes="href string:${info/url}/personal_edit_form"> 123 Returning 124 </a> 125 </td></tr> 126 </span> 127 <span tal:condition="python:info['review_state']!='returning'"> 128 <tr><td> 129 Returning 130 </td></tr> 131 </span> 132 <span tal:condition="python:info['review_state']=='school_fee_pin_entered'"> 133 <tr><td class="active"> 134 <a href="" tal:attributes="href string:${info/url}/student_view"> 135 School fee paid 136 </a> 137 </td></tr> 138 </span> 139 <span tal:condition="python:info['review_state']!='school_fee_pin_entered'"> 140 <tr><td> 141 School fee paid 142 </td></tr> 143 </span> 144 <span tal:condition="python:info['review_state']=='courses_registered'"> 145 <tr><td class="active"> 146 <a href="" tal:attributes="href string:${info/url}/student_view"> 147 Courses registered 148 </a> 149 </td></tr> 150 </span> 151 <span tal:condition="python:info['review_state']!='courses_registered'"> 152 <tr><td> 153 Courses registered 154 </td></tr> 155 </span> 156 <span tal:condition="python:info['review_state']=='courses_validated'"> 157 <tr><td class="active"> 158 <a href="" tal:attributes="href string:${info/url}/student_view"> 159 Courses vaildated 160 </a> 161 </td></tr> 162 </span> 163 <span tal:condition="python:info['review_state']!='courses_validated'"> 164 <tr><td> 165 Courses vaildated 166 </td></tr> 167 </span> 111 168 </table> 169 112 170 </tal:block> 113 171
Note: See TracChangeset for help on using the changeset viewer.