Changeset 1304 for WAeUP_SRP/trunk/skins/waeup_student
- Timestamp:
- 15 Jan 2007, 22:46:27 (18 years ago)
- Location:
- WAeUP_SRP/trunk/skins/waeup_student
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_student/getStudentWorkflowInfo.py
r1286 r1304 28 28 info['url'] = student.absolute_url() 29 29 review_state = info['review_state'] = wf.getInfoFor(student,'review_state',None) 30 info[' returning'] = review_state in ('returning',30 info['cr'] = review_state in ('returning', 31 31 'school_fee_paid', 32 32 'courses_registered', 33 33 'courses_validated', 34 34 ) 35 35 36 return info -
WAeUP_SRP/trunk/skins/waeup_student/portlet_student_workflow_display.pt
r1286 r1304 3 3 condition="context/isStudent"> 4 4 5 <table class="registration" tal:condition="not:info/ returning">5 <table class="registration" tal:condition="not:info/cr"> 6 6 <span tal:condition="python:path('info/review_state')=='application_pin_entered'"> 7 7 <tr><td class="active"> … … 102 102 </table> 103 103 104 <table class="registration" tal:condition="info/ returning">104 <table class="registration" tal:condition="info/cr"> 105 105 <span tal:condition="python:info['review_state']=='returning'"> 106 106 <tr><td class="active"> … … 108 108 Returning 109 109 </a> 110 </td></tr>111 </span>112 <span tal:condition="python:info['review_state']!='returning'">113 <tr><td>114 Returning115 110 </td></tr> 116 111 </span>
Note: See TracChangeset for help on using the changeset viewer.