99ad41abdf18170dc6ef19ff99af851daa92ccfb
[monitor.git] / web / MonitorWeb / monitorweb / templates / pculist.kid
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <?python
3 layout_params['page_title'] = "Monitor PCU List"
4 from pcucontrol.reboot import pcu_name, model_to_object
5 from monitor import config
6 from links import *
7 ?>
8 <html py:layout="'sitemenu.kid'"
9       xmlns:py="http://purl.org/kid/ns#"
10           xmlns:mochi="http://www.mochi.org">
11
12   <div py:match="item.tag == 'content'">
13         <table id="sub-table" width="100%">
14                 <thead>
15                         <tr>
16                                 <th><a href="${link('pcu', filter='ok')}">Ok(${fc['ok']})</a></th>
17                                 <th><a href="${link('pcu', filter='Not_Run')}">Misconfigured(${fc['Not_Run']})</a></th>
18                                 <th><a href="${link('pcu', filter='NetDown')}">Offline(${fc['NetDown']})</a></th>
19                                 <th><a href="${link('pcu', filter='pending')}">Runtime Error(${fc['pending']})</a></th>
20                                 <th><a href="${link('pcu', filter='all')}">All</a></th>
21                         </tr>
22                 </thead>
23                 <tbody>
24                 <tr>
25                 <td colspan="5">
26                 <table id="sortable_table" class="datagrid" border="1" width="100%">
27                         <thead>
28                                 <tr>
29                                         <th mochi:format="int"></th>
30                                         <th mochi:format="str">Site</th>
31                                         <th>PCU Name</th>
32                                         <th>Missing Fields</th>
33                                         <th>DNS Status</th>
34                                         <th nowrap='true' >Port Status</th>
35                                         <th nowrap='true' width="80%">Test Results</th>
36                                         <th>Model</th>
37                                         <th>Nodes</th>
38                                 </tr>
39                         </thead>
40                         <tbody>
41                                 <tr py:for="i,node in enumerate(query)" class="${i%2 and 'odd' or 'even'}" >
42                                         <td></td>
43                                         <td><a href="${link('siteview', loginbase=node.loginbase)}">${node.loginbase}</a></td>
44                                         <td nowrap='true'>
45                                                 <div class='oneline'>
46                                                 <a class='left' href="${link('pcuview', pcuid=node.plc_pcuid)}">${pcu_name(node.plc_pcu_stats)}</a>
47                                                 <a class='right' href="${plc_pcu_uri_id(node.plc_pcu_stats['pcu_id'])}">
48                                                         <img style='display: inline' border='0' src="static/images/extlink.gif" align='right'/></a>
49                                                 </div>
50                                         </td>
51                                         <td py:content="node.entry_complete"></td>
52                                         <td id="dns-${node.dns_status}" py:content="node.dns_status"></td>
53                                         <td>
54                                                 <span py:for="port,state in node.ports" 
55                                                 id="port${state}" py:content="'%s, ' % port">80</span>
56                                         </td>
57                                         <td width="20%" nowrap='true' align='center' id="status-${node.status}">
58                                                 <div id="links">
59                                                 <a class="info" py:if="'error' in node.status" 
60                                                         href="${link('pcuview', pcuid=node.plc_pcuid)}">
61                                                         Error Message<span><pre>${node.reboot_trial_status}</pre></span></a>
62                                                 <a py:if="'error' not in node.status" 
63                                                         href="${link('pcuview', pcuid=node.plc_pcuid)}"
64                                                         py:content="node.status">Reboot Status</a>
65                                                 </div>
66                                         </td>
67                                         <td py:content="node.plc_pcu_stats['model']"></td>
68                                         <td py:content="len(node.plc_pcu_stats['node_ids'])"></td>
69                                 </tr>
70                         </tbody>
71                 </table>
72                 </td>
73                 </tr>
74                 </tbody>
75         </table>
76   </div>
77
78 </html>