add sorting tables to the pcu view.
[monitor.git] / web / MonitorWeb / monitorweb / templates / sitemenu.kid
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns:py="http://purl.org/kid/ns#">
3   <head>
4     <title>App Name - ${page_title}</title>
5     <link href="static/css/style.css" type="text/css" rel="stylesheet" />
6     <script type="text/javascript" src="${tg.tg_js}/MochiKit.js"></script>
7     <script type="text/javascript" src="static/javascript/sortable_tables.js"></script>
8
9   </head>
10
11   <body>
12     <div id="header">Monitor : ${page_title}</div>
13         <table valign="top" border="1" bgcolor="white" align="center" width="60em">
14         <tr>
15                 <td>
16                         <table id="nps-table" width="100%">
17                         <thead>
18                         <tr>
19                                 <th><a href="${tg.url('node')}">Nodes</a></th>
20                                 <th><a href="${tg.url('pcu')}">PCUs</a></th>
21                                 <th><a href="${tg.url('site')}">Sites</a></th>
22                                 <th><a href="${tg.url('action')}">Actions</a></th>
23                         </tr>
24                         </thead>
25                         <tbody>
26                         <tr>
27                                 <td colspan="4">
28                                 <content>Default content - this will be replaced by an element marked with 
29                                         py:match="item.tag == 'content'"</content>
30                                 </td>
31                         </tr>
32                         </tbody>
33                         </table>
34                 </td>
35         </tr>
36         </table>
37
38     <div id="footer">Copywrite © 2007-2008 The Trustees of Princeton University</div>
39   </body>
40 </html>