added a variety of updates to templates, to reference each other.
[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="${tg.url('pcu', filter='ok')}">Ok(${fc['ok']})</a></th>
17                                 <th><a href="${tg.url('pcu', filter='Not_Run')}">Misconfigured(${fc['Not_Run']})</a></th>
18                                 <th><a href="${tg.url('pcu', filter='NetDown')}">Offline(${fc['NetDown']})</a></th>
19                                 <th><a href="${tg.url('pcu', filter='pending')}">Runtime Error(${fc['pending']})</a></th>
20                                 <th><a href="${tg.url('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>Port Status</th>
35                                         <th 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="${plc_site_link_id(node.plc_pcu_stats['site_id'])}">${node.loginbase}</a></td>
44                                         <td nowrap="true" >
45                                                 <a href="${plc_pcu_link_id(node.plc_pcu_stats['pcu_id'])}">${pcu_name(node.plc_pcu_stats)}</a></td>
46                                         <td py:content="node.entry_complete"></td>
47                                         <td id="dns-${node.dns_status}" py:content="node.dns_status"></td>
48                                         <td>
49                                                 <span py:for="port,state in node.ports" 
50                                                 id="port${state}" py:content="'%s, ' % port">80</span>
51                                         </td>
52                                         <td width="40" id="status-${node.status}" py:content="node.reboot_trial_status"></td>
53                                         <td py:content="node.plc_pcu_stats['model']"></td>
54                                         <td py:content="len(node.plc_pcu_stats['node_ids'])"></td>
55                                 </tr>
56                         </tbody>
57                 </table>
58                 </td>
59                 </tr>
60                 </tbody>
61         </table>
62   </div>
63
64 </html>