Statistics
| Branch: | Tag: | Revision:

root / ui / templates / list.html @ 24d0c6a9

History | View | Annotate | Download (1.9 kB)

1
<script src="http://tablesorter.com/jquery.tablesorter.min.js"></script>
2

    
3
<div id="machinesview" class="list">
4
    <div id="spinner"></div>
5
    <div class="actions">
6
        <a>Start</a>
7
        <a>Reboot</a>
8
        <a>Shutdown</a>
9
        <br />
10
        <a>Destroy</a>
11
        <br />
12
        <a>Show Details</a>
13
        <a>Add to group</a>
14
        <br />
15
        <a>Out of band</a>
16
        <br />
17
        <a>Attach disk</a>
18
        <a>Detach disk</a>
19
        <br />
20
        <a>Connect to network</a>
21
        <a>Disconnect from net</a>
22
    </div>
23
    <table>
24
        <thead> 
25
            <tr> 
26
                <th id="selection"><input type="checkbox" id="check" /></th> 
27
                <th id="os">OS</th> 
28
                <th id="name">Name</th> 
29
                <th id="ip">IP</th> 
30
                <th id="group">Group</th>
31
                <th id="status">Status</th> 
32
            </tr> 
33
        </thead> 
34
        <tbody class="running">
35
            <tr id="machine-template" style="display: none">
36
                <td><input type="checkbox" class="machine" id="node-id" /></td>
37
                <td><img class="list-logo" src="static/os_logos/node.thumb" width="16" height="16" /></td>
38
                <td><a class="name"><span class="name">node.name</span></a></td> 
39
                <td><a class="ip"><span class="public">node.public_ip</span></a></td>
40
                <td>group</td>
41
                <td class="status">Running</td>    
42
            </tr>
43
        </tbody>
44
    </table>
45
    <div id="mini" class="seperator"></div>
46
    <table>
47
        <thead> 
48
            <tr> 
49
                <th id="selection"><input type="checkbox" id="check" /></th> 
50
                <th id="os">OS</th> 
51
                <th id="name">Name</th> 
52
                <th id="ip">IP</th> 
53
                <th id="group">Group</th>
54
                <th id="status">Status</th> 
55
            </tr>  
56
        </thead> 
57
        <tbody class="terminated"></tbody>
58
    </table>
59
</div>