Changeset 10999 for main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/browser/templates/departmentmanagepage.pt
- Timestamp:
- 29 Jan 2014, 11:23:13 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/browser/templates/departmentmanagepage.pt
r10995 r10999 32 32 <div id="tab2" class="tab-pane"> 33 33 <br /> 34 <table class="d isplay dataTableManage">34 <table class="dataTableManage"> 35 35 <thead> 36 36 <tr> … … 44 44 </thead> 45 45 <tbody> 46 <tr tal:repeat="entry view/getCourses" class="gradeC"> <td>46 <tr tal:repeat="entry view/getCourses"> <td> 47 47 <input type="checkbox" name="val_id" 48 48 tal:attributes="value entry/name" /> </td> <td> … … 62 62 <div id="tab3" class="tab-pane"> 63 63 <br /> 64 <table class="d isplay dataTableManage">64 <table class="dataTableManage"> 65 65 <thead> 66 66 <tr> … … 74 74 </thead> 75 75 <tbody> 76 <tr tal:repeat="entry view/getCertificates" class="gradeC"> <td>76 <tr tal:repeat="entry view/getCertificates"> <td> 77 77 <input type="checkbox" name="val_id" 78 78 tal:attributes="value entry/name" /> </td> <td> … … 91 91 </div> 92 92 <div id="tab4" class="tab-pane"> <br /> 93 <table class="d isplay dataTableManage">93 <table class="dataTableManage"> 94 94 <thead> 95 95 <tr> … … 105 105 </thead> 106 106 <tbody> 107 <tr tal:repeat="entry view/getUsersWithLocalRoles" class="gradeC">107 <tr tal:repeat="entry view/getUsersWithLocalRoles"> 108 108 <td> <input type="checkbox" name="role_id" 109 109 tal:attributes="value python: entry['user_name']+'|'+entry['local_role']" /> </td> … … 114 114 </tbody> 115 115 </table> 116 <div tal:condition="view/availableActions">117 <span tal:repeat="action view/actions" tal:omit-tag="">118 <input tal:condition="python:action.label in view.tabfouractions1"119 tal:replace="structure action/render"/>120 </span>116 <div tal:condition="view/availableActions"> 117 <span tal:repeat="action view/actions" tal:omit-tag=""> 118 <input tal:condition="python:action.label in view.tabfouractions1" 119 tal:replace="structure action/render"/> 120 </span> 121 121 </div> <br /><br /> 122 <table class="form-table"> 123 <tr> <td> 122 <div class="form-inline"> 123 <br /> 124 <div class="form-group"> 124 125 <select id="user" name="user"> 125 <option tal:attributes="value user/name" tal:repeat="user view/getUsers"> 126 <span tal:replace="user/val/title">USERTITLE 127 </span> 126 <option tal:repeat="user view/getUsers" 127 tal:attributes="value user/name"> 128 <span tal:replace="user/val/title">USERTITLE 129 </span> 128 130 </option> 129 </select> </td> <td> 130 <select id="local_role" name="local_role"> 131 <option tal:attributes="value localrole/name" 132 tal:repeat="localrole view/getLocalRoles"> 133 <span tal:replace="localrole/title">LOCALROLETITLE 134 </span> 135 </option> 136 </select> </td> <td> 137 <div tal:condition="view/availableActions"> 138 <span tal:repeat="action view/actions" tal:omit-tag=""> 139 <input tal:condition="python:action.label in view.tabfouractions2" 140 tal:replace="structure action/render"/> 141 </span> 142 </div> 143 </td> 144 </tr> 145 </table> 131 </select> 132 </div> 133 <div class="form-group"> 134 <select id="local_role" name="local_role"> 135 <option tal:repeat="localrole view/getLocalRoles" 136 tal:attributes="value localrole/name"> 137 <span tal:replace="localrole/title">LOCALROLETITLE 138 </span> 139 </option> 140 </select> 141 </div> 142 <div class="form-group"> 143 <div tal:condition="view/availableActions"> 144 <span tal:repeat="action view/actions" tal:omit-tag=""> 145 <input tal:condition="python:action.label in view.tabfouractions2" 146 tal:replace="structure action/render"/> 147 </span> 148 </div> 149 </div> 150 </div> 146 151 </div> 147 152 </div>
Note: See TracChangeset for help on using the changeset viewer.