Added nc
[invirt/packages/invirt-web.git] / code / templates / list.mako
1 <%page expression_filter="h"/>
2 <%inherit file="skeleton.mako" />
3 <%!
4         import datetime
5 %>
6
7
8 <%def name="title()">
9 VM List
10 </%def>
11
12 %if os.path.exists("/etc/invirt/motd.html"):
13 <div class="result">
14 <p class="error">${open('/etc/invirt/motd.html').read()|n}</p>
15 </div>
16 %endif
17
18 <%def name="createForm()">
19 % if cant_add_vm:
20 <p>${cant_add_vm}</p>
21 % else:
22 <h2>Create a new VM</h2>
23 % if err:
24 <p class="error">We had a problem with your request:</p>
25 % elif new_machine:
26 <p>Congratulations! You successfully created a new VM called ${new_machine}.</p>
27 % endif
28
29     <form action="create" method="POST">
30     <input type="hidden" name="back" value="list"/>
31       <table>
32         ${self.fn.errorRow('create', err)}
33         <tr>
34           <td>Name</td>
35           <td><input type="text" name="name" value="${defaults.name}"/>.${config.dns.domains[0]}</td>
36         </tr>
37         ${self.fn.errorRow('name', err)}
38         <tr>
39           <td>Description</td>
40           <td><textarea name="description" rows="4" cols="60">${defaults.description}</textarea></td>
41         </tr>
42         ${self.fn.errorRow('description', err)}
43         <tr>
44           <td>Memory</td>
45           <td><input type="text" name="memory" value="${defaults.memory}" size=3/> MiB (${max_memory} max)</td>
46         </tr>
47         ${self.fn.errorRow('memory', err)}
48         <tr>
49           <td>Disk</td>
50           <td><input type="text" name="disksize" value="${defaults.disk}" size=3/> GiB (${"%0.1f" % (max_disk-0.05)} max)</td>
51         </tr>
52         ${self.fn.errorRow('disk', err)}
53         <tr>
54           <td>Network Device${self.fn.helppopup('Network Device')}</td>
55           <td>
56           ${self.fn.nicTypeList(defaults.nic)}
57           </td>
58         </tr>
59         ${self.fn.errorRow('nictype', err)}
60
61         <tr>
62           <td>HVM/ParaVM${self.fn.helppopup('HVM/ParaVM')}</td>
63           <td>
64           ${self.fn.vmTypeList(defaults.type)}
65           </td>
66         </tr>
67         ${self.fn.errorRow('vmtype', err)}
68         ${self.fn.errorRow('autoinstall', err)}
69         <tr>
70           <td>Autoinstall${self.fn.helppopup('Autoinstalls')}</td>
71           <td><label><input type="radio" name="cd_or_auto" id="cd_or_auto_auto"
72                  onchange="$('cdromlist').value = ''; $('vmtype-linux').checked = true" />
73 ${self.fn.autoList(defaults.cdrom, "$('cd_or_auto_auto').checked = true;$('cdromlist').value = '';$('vmtype-linux').checked = true")}
74               (experimental; 2-3 minutes, and you have a machine with empty root password.)
75 </label></td>
76         </tr>
77         <tr>
78           <td>Boot CD</td>
79           <td><label><input type="radio" name="cd_or_auto" id="cd_or_auto_cd" checked="checked"
80                 onchange="$('autoinstalllist').value = ''; $('vmtype-linux-hvm').checked = true" />
81 ${self.fn.cdromList(defaults.cdrom, "$('cd_or_auto_cd').checked = true;$('autoinstalllist').value = '';$('vmtype-linux-hvm').checked = true")}
82 </label></td>
83         </tr>
84         ${self.fn.errorRow('cdrom', err)}
85         ${self.fn.errorRow('cdrom', err)}
86         <tr>
87           <td>Owner</td>
88           <td><input type="text" name="owner" value="${defaults.owner}"/></td>
89         </tr>
90         ${self.fn.errorRow('owner', err)}
91       </table>
92       <input type="submit" class="button" value="Create it!" \
93 % if disable_creation:
94  disabled="disabled" \
95 % endif
96 /> \
97 % if disable_creation:
98 &nbsp;<span style="color:red;">VM creation is currently disabled due to lack of disk space.</span> \
99 %endif
100 <br />
101       Windows notes: ${self.fn.helppopup('Windows')}
102     </form>
103 % endif
104 </%def>
105
106 <%def name="machineRow(machine, dark)">
107 <%
108         on = (machine.uptime is not None)
109 %>
110       <tr\
111 % if dark:
112  class="stripedrow" \
113 % endif
114
115         <td rowspan="2">
116         % if on and installing[machine]:
117         <img src="static/power_installing.png" alt="Installing..." />
118         % else:
119           <form action="machine/${machine.machine_id}/command/${'shutdown' if on else 'create'}" method="post">
120             <input type="hidden" name="back" value="list"/>
121 <input type="submit" class="power ${'on' if on else 'off'}" name="action" value="${'Shutdown' if on else 'Power on'}"\
122 % if on:
123  onclick="return confirm('Are you sure you want to power off this VM?');"
124 % endif
125 />
126           </form>
127           % endif
128         </td>
129         <td><a href="machine/${machine.machine_id}">${machine.name}</a></td>
130         <td>${machine.memory}M</td>
131         <td>${machine.owner}</td>
132         <td>${machine.administrator}</td>
133 % if machine.nics:
134         <td>${', '.join(nic.ip for nic in machine.nics)}</td>
135 % else:
136         <td></td>
137 % endif
138 <td>\
139 % if on:
140 ${datetime.timedelta(seconds=int(machine.uptime))}\
141 % endif
142 </td>
143         <td>\
144 % if has_vnc[machine] == True:
145 <a href="machine/${machine.machine_id}/vnc">Console</a>\
146 % elif has_vnc[machine] == 'ParaVM':
147 ParaVM${self.fn.helppopup("ParaVM Console")}
148 % elif has_vnc[machine] != 'Off':
149 ${has_vnc[machine]}
150 % endif
151 </td>
152       </tr>
153       <tr\
154 % if dark:
155  class="stripedrow" \
156 % endif
157 >
158         <td colspan="7" style="padding-left: 1em; color: #666">${machine.description|self.fn.module.nl2br}</td>
159       </tr>
160 </%def>
161
162 <%def name="machineList(machines)">
163     <table cellspacing="0" cellpadding="2">
164       <tr>
165         <th></th>
166         <th>Name</th>
167         <th>Memory</th>
168         <th>Owner${self.fn.helppopup('Owner')}</th>
169         <th>Administrator${self.fn.helppopup('Administrator')}</th>
170         <th>IP</th>
171         <th>Uptime</th>
172         <th>VNC</th>
173       </tr>
174 % for n, machine in enumerate(machines):
175         ${machineRow(machine, (n%2)==0)}
176 % endfor
177     </table>
178 </%def>
179
180 <p style="font-size: 125%;"><a href="http://${config.web.hostname}">What is XVM?</a></p>
181 % if not machines:
182 <p>You don't currently control any VMs.</p>   
183 % endif
184     <p><a href="list">refresh</a></p>
185     <div id="machinelist">
186     ${machineList(machines)}
187     </div>
188 ${createForm()}