Changeset 3985
- Timestamp:
- 27 Feb 2009, 20:22:29 (16 years ago)
- Location:
- WAeUP_SRP/trunk/skins
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_accommodation/getAccommodationInfo.py
r3962 r3985 103 103 logger.info('%s has invalid session %s' % (student_id,student_record.session)) 104 104 105 if level is None or end_level is None or student_record.review_state == 'deactivated':105 if level is None or end_level is None or student_record.review_state in ('deactivated','graduated'): 106 106 pass 107 107 elif arrived: … … 109 109 booking_allowed = student_record.review_state in new_states 110 110 else: 111 booking_allowed = not (level % 100) 111 booking_allowed = not (level % 100) 112 112 elif previous: 113 113 booking_allowed = student_record.verdict in ('A','B',) -
WAeUP_SRP/trunk/skins/waeup_default/srp_anonymous_view.pt
r3607 r3985 11 11 12 12 <h2>Welcome to the 13 <br /> New Student Registration Portalof the <span tal:replace="here/portal_properties/institution_title" /></h2>13 <br /><span tal:replace="here/portal_properties/title" /> of the <span tal:replace="here/portal_properties/institution_title" /></h2> 14 14 15 15 <strong>This is the default frontpage of the Student Registration Portal (SRP) which is part -
WAeUP_SRP/trunk/skins/waeup_default/srp_view.pt
r3611 r3985 13 13 14 14 <h2>Welcome to the 15 <br /> Student Registration Portalof the <span tal:replace="here/portal_properties/institution_title" /></h2>15 <br /><span tal:replace="here/portal_properties/title" /> of the <span tal:replace="here/portal_properties/institution_title" /></h2> 16 16 <br /> 17 17 You are logged in and viewing the portal's root folder. Please go to one of the sections above. -
WAeUP_SRP/trunk/skins/waeup_layout/portlet_student_workflow_display.pt
r3769 r3985 77 77 <span tal:condition="python:info['review_state']=='returning'"> 78 78 <tr><td class="active"> 79 80 79 Returning 81 82 80 </td></tr> 83 81 </span> 82 <span tal:condition="python:info['review_state']!='returning'"> 83 <tr><td> 84 Returning 85 </td></tr> 86 </span> 84 87 <span tal:condition="python:info['review_state']=='school_fee_paid'"> 85 88 <tr><td class="active"> … … 109 112 <tr><td class="active"> 110 113 <a href="" tal:attributes="href string:${info/url}/student_view"> 111 Courses va ildated114 Courses validated 112 115 </a> 113 116 </td></tr> … … 115 118 <span tal:condition="python:info['review_state']!='courses_validated'"> 116 119 <tr><td> 117 Courses va ildated120 Courses validated 118 121 </td></tr> 119 122 </span> 123 <span tal:condition="python:info['review_state']=='graduated'"> 124 <tr><td class="active"> 125 <a href="" tal:attributes="href string:${info/url}/student_view"> 126 Graduated 127 </a> 128 </td></tr> 129 </span> 130 <span tal:condition="python:info['review_state']!='graduated'"> 131 <tr><td> 132 Graduated 133 </td></tr> 134 </span> 120 135 </table> 121 136 -
WAeUP_SRP/trunk/skins/waeup_student/getStudentWorkflowInfo.py
r1874 r3985 32 32 'courses_registered', 33 33 'courses_validated', 34 'graduated', 34 35 ) 35 36 info['tr'] = review_state in ('returning',)
Note: See TracChangeset for help on using the changeset viewer.