Changeset 464 for WAeUP_SRP/trunk/skins
- Timestamp:
- 1 Sep 2006, 17:16:18 (19 years ago)
- Location:
- WAeUP_SRP/trunk/skins
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_academics/academics_content_lib_info_detail_tab.pt
r454 r464 131 131 </span> 132 132 <span tal:define="docu python: info['doc']" 133 tal:condition="python: docu.portal_type == ' CourseTicket'">133 tal:condition="python: docu.portal_type == 'StudentCourseResult'"> 134 134 <td> 135 135 <span tal:content="docu/grade">ID</span> … … 140 140 </span> 141 141 <span tal:define="docu python: info['doc']" 142 tal:condition="python: docu.portal_type == 'Student'">142 tal:condition="python: False and docu.portal_type == 'Student'"> 143 143 <td> 144 144 <span tal:content="info/clearance/matric_no">ID</span> -
WAeUP_SRP/trunk/skins/waeup_custom/getContentInfo.py
r458 r464 233 233 info['core_or_elective'] = core 234 234 elif doc.portal_type == 'Student': 235 info['clearance'] = proxy.clearance.getContent() 235 try: 236 info['clearance'] = proxy.clearance.getContent() 237 except AttributeError: 238 info['clearance'] = None 236 239 info['time'] = doc.modified() 237 240 info['doc'] = doc
Note: See TracChangeset for help on using the changeset viewer.