Changeset 3611 for WAeUP_SRP/base/skins/waeup_default
- Timestamp:
- 6 Aug 2008, 14:25:17 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/skins/waeup_default/srp_view.pt
r3607 r3611 8 8 </span> 9 9 10 <span tal:condition="python: not getattr(context.campus.documents,'srp_home_doc',None)"> 10 <span tal:condition="python: not getattr(context.campus.documents,'srp_home_doc',None)" 11 tal:define="groups python: context.portal_membership.getAuthenticatedMember().getGroups()" 12 > 11 13 12 14 <h2>Welcome to the … … 16 18 <br /><br /> 17 19 18 <span tal:define="ca_view python: 'CourseAdvisers' in context.portal_membership.getAuthenticatedMember().getGroups()" 19 tal:condition="ca_view">The first-time access to the students section (Students tab above) my take some time. Your local roles are being determined.</span> 20 <span tal:condition="python: 'CourseAdvisers' in groups"> 21 The first-time access to the students section (Students tab above) my take some time. Your local roles are being determined. 22 </span> 23 24 <div tal:condition="python: 'Lecturers' in groups" 25 tal:define="info context/getLecturerCoursesInfo"> 20 26 27 You are registered lecturer of the following courses: <br /><br /> 28 29 30 <table> 31 <tr> 32 <th align='center'>Code</th> 33 <th align='center'>Title</th> 34 <th align='center'>Semester</th> 35 <th align='center'></th> 36 </tr> 37 <tr tal:repeat="row info/courses" 38 tal:attributes="class python:test(repeat['row'].even(), 'even ajaxtd', 'odd ajaxtd')"> 39 <td align="center" width="50pt"> <a href="" tal:attributes="href row/course_url"><span tal:content="row/id" /></a></td> 40 <td width="400pt" tal:content="row/title"></td> 41 <td align="center" width="20pt"><span tal:content="row/semester" /></td> 42 <td> <a href="" tal:attributes="href row/list_url">[list students] </a></td> 43 </tr> 44 </table> 45 46 47 48 </div> 21 49 </span> 22 50
Note: See TracChangeset for help on using the changeset viewer.