Changeset 2796 for trunk/packages/invirt-web/code/templates/list.mako
- Timestamp:
- Dec 27, 2009, 8:13:29 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/invirt-web/code/templates/list.mako
r2794 r2796 81 81 </%def> 82 82 83 <%def name="machineRow(machine)"> 84 <tr> 83 <%def name="machineRow(machine, dark)"> 84 <tr\ 85 % if dark: 86 class="stripedrow" \ 87 % endif 88 > 85 89 <td rowspan="2"> 86 90 % if machine.uptime and installing[machine]: … … 140 144 <th>VNC</th> 141 145 </tr> 142 % for machine in machines:143 ${machineRow(machine )}146 % for n, machine in enumerate(machines): 147 ${machineRow(machine, (n%2)==0)} 144 148 % endfor 145 149 </table> 146 <script type="text/javascript" src="/static/stripe.js"></script>147 <script type="text/javascript">148 document.observe("dom:loaded", function() {149 stripe($('machinelist').getElementsByTagName('table')[0],150 'stripedrow');151 });152 </script>153 150 </%def> 154 151
Note: See TracChangeset
for help on using the changeset viewer.