- Timestamp:
- 12 Oct 2006, 09:04:03 (18 years ago)
- Location:
- WAeUP_SRP/trunk/skins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_custom/custom.css.dtml
r503 r662 13 13 } 14 14 15 table.registration a { 16 text-decoration: none; 17 color: black; 15 table.registration td a { 16 white-space: nowrap; 17 color: gray; 18 } 19 20 table.registration td a:visited { 21 white-space: nowrap; 22 color: gray; 23 } 24 25 table.registration td a:hover { 26 text-decoration: underline; 27 white-space: nowrap; 28 } 29 30 table.registration td.active a { 31 white-space: nowrap; 32 color: #00C600; 33 } 34 35 table.registration td.active a:visited { 36 white-space: nowrap; 37 color: #00C600; 38 } 39 40 table.registration td.active a:hover { 41 text-decoration: underline; 42 white-space: nowrap; 18 43 } 19 44 -
WAeUP_SRP/trunk/skins/waeup_student/getStudentInfo.py
r659 r662 43 43 info['student'] = student 44 44 info['id'] = student.getId() 45 info['url'] = student.absolute_url() 45 46 info['student_doc'] = student.getContent() 46 47 info['app'] = student.application -
WAeUP_SRP/trunk/skins/waeup_student/portlet_student_workflow_display.pt
r535 r662 14 14 15 15 <span tal:condition="python:path('info/review_state')=='application_pin_entered'"> 16 <tr><td class="active">Admission started</td></tr> 16 <tr><td class="active"> 17 <a href="" tal:attributes="href string:${info/url}/passport_entry_view"> 18 Admission started 19 </a> 20 </td></tr> 17 21 </span> 18 22 <span tal:condition="python:path('info/review_state')!='application_pin_entered'"> 19 <tr><td>Admission started</td></tr> 23 <tr><td> 24 Admission started 25 </td></tr> 20 26 </span> 21 27 22 23 28 <span tal:condition="python:path('info/review_state')=='admission_applied'"> 24 <tr><td class="active">Admission requested</td></tr> 29 <tr><td class="active"> 30 <a href="" tal:attributes="href string:${info/url}/application_view"> 31 Admission requested 32 </a> 33 </td></tr> 25 34 </span> 26 35 <span tal:condition="python:path('info/review_state')!='admission_applied'"> 27 <tr><td>Admission requested</td></tr> 36 <tr><td> 37 Admission requested 38 </td></tr> 28 39 </span> 29 40 … … 35 46 <tr><td>PUME passed</td></tr> 36 47 </span> 48 49 <span tal:condition="python:path('info/review_state')=='pume_failed'"> 50 <tr><td class="active">PUME failed</td></tr> 51 </span> 52 <span tal:condition="python:path('info/review_state')!='pume_failed'"> 53 <tr><td>PUME failed</td></tr> 54 </span> 37 55 38 56 <span tal:condition="python:path('info/review_state')=='admitted'"> -
WAeUP_SRP/trunk/skins/waeup_student/student_view.pt
r659 r662 44 44 <td> 45 45 <a tal:condition="row/is_editable" 46 href="edit" tal:attributes="href string:${ here/absolute_url}/passport_entry_view">46 href="edit" tal:attributes="href string:${info/url}/passport_entry_view"> 47 47 [edit] 48 48 </a>
Note: See TracChangeset for help on using the changeset viewer.