Changeset 6017 for main/waeup.sirp/trunk/src/waeup/sirp/browser/templates
- Timestamp:
- 2 May 2011, 15:27:20 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/browser/templates/departmentmanagepage.pt
r6003 r6017 74 74 75 75 <div id="tab-2"> 76 <div name="thecoursetable" tal:condition="python: len(context.courses.keys())"> 77 <div tal:replace="structure view/coursetable/renderHTML"></div> 78 </div> 79 <br /> 76 <table id="datatable" class="display"> 77 <thead> 78 <tr> 79 <th> </th><th>Code</th><th>Title</th> 80 </tr> 81 </thead> 82 <tbody> 83 <tr tal:repeat="entry view/getCourses" 84 class="gradeB"> 85 <td> 86 <input type="checkbox" name="val_id" tal:attributes="value entry/name" /> 87 </td> 88 <td> 89 <a href="" 90 tal:attributes="href entry/url" 91 tal:content="entry/name">Name</a> 92 </td> 93 <td tal:content="entry/container/title"> 94 Title 95 </td> 96 </tr> 97 </tbody> 98 </table> 99 <br /><br /> 80 100 <div id="actionsView"> 81 101 <span class="actionButtons" tal:condition="view/availableActions"> … … 90 110 91 111 <div id="tab-3"> 92 <div name="thecerttable"> 93 <div tal:replace="structure view/certificatetable/renderHTML"></div> 94 </div> 95 <br /> 112 <table id="datatable" class="display"> 113 <thead> 114 <tr> 115 <th> </th><th>Code</th><th>Title</th> 116 </tr> 117 </thead> 118 <tbody> 119 <tr tal:repeat="entry view/getCertificates" 120 class="gradeB"> 121 <td> 122 <input type="checkbox" name="val_id" tal:attributes="value entry/name" /> 123 </td> 124 <td> 125 <a href="" 126 tal:attributes="href entry/url" 127 tal:content="entry/name">Name</a> 128 </td> 129 <td tal:content="entry/container/title"> 130 Title 131 </td> 132 </tr> 133 </tbody> 134 </table> 135 <br /><br /> 96 136 <div id="actionsView"> 97 137 <span class="actionButtons" tal:condition="view/availableActions">
Note: See TracChangeset for help on using the changeset viewer.