supports basic listing of pcus, nodes, and some coloring from the old scripts.
[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   </head>
7
8   <body>
9     <h1>Monitor : ${page_title}</h1>
10         <table valign="top" border="1" bgcolor="white" align="center" width="800">
11         <tr>
12                 <td>
13                         <table>
14                         <thead>
15                         <tr>
16                                 <th><a href="${tg.url('node')}">Nodes</a></th>
17                                 <th><a href="${tg.url('pcu')}">PCUs</a></th>
18                                 <th><a href="${tg.url('site')}">Sites</a></th>
19                                 <th><a href="${tg.url('action')}">Actions</a></th>
20                         </tr>
21                         </thead>
22                         <tbody>
23                         <tr>
24                                 <td colspan="4">
25                                 <content>Default content - this will be replaced by an element marked with 
26                                         py:match="item.tag == 'content'"</content>
27                                 </td>
28                         </tr>
29                         </tbody>
30                         </table>
31                 </td>
32         </tr>
33         </table>
34
35     <div class="footer">Copywrite XYZ</div>
36   </body>
37 </html>