1 <%page expression_filter="h"/>
2 <%inherit file="skeleton.mako" />
12 <%def name="createForm()">
16 <h2>Create a new VM</h2>
18 <p class="error">We had a problem with your request:</p>
20 <p>Congratulations! You successfully created a new VM called ${new_machine}.</p>
22 <form action="create" method="POST">
23 <input type="hidden" name="back" value="list"/>
25 ${self.fn.errorRow('create', err)}
28 <td><input type="text" name="name" value="${defaults.name}"/>.${config.dns.domains[0]}</td>
30 ${self.fn.errorRow('name', err)}
33 <td><textarea name="description" rows="4" cols="60">${defaults.description}</textarea></td>
35 ${self.fn.errorRow('description', err)}
38 <td><input type="text" name="memory" value="${defaults.memory}" size=3/> MiB (${max_memory} max)</td>
40 ${self.fn.errorRow('memory', err)}
43 <td><input type="text" name="disksize" value="${defaults.disk}" size=3/> GiB (${"%0.1f" % (max_disk-0.05)} max)</td>
45 ${self.fn.errorRow('disk', err)}
47 <td>HVM/ParaVM${self.fn.helppopup('HVM/ParaVM')}</td>
49 ${self.fn.vmTypeList(defaults.type)}
52 ${self.fn.errorRow('vmtype', err)}
53 ${self.fn.errorRow('autoinstall', err)}
55 <td>Autoinstall${self.fn.helppopup('Autoinstalls')}</td>
56 <td><input type="radio" name="cd_or_auto" id="cd_or_auto_auto"
57 onchange="$('cdromlist').value = ''; $('vmtype-linux').checked = true" />
58 ${self.fn.autoList(defaults.cdrom, "$('cd_or_auto_auto').checked = true;$('cdromlist').value = '';$('vmtype-linux').checked = true")}
59 (experimental; 2-3 minutes, and you have a machine with empty root password.)
63 <td><input type="radio" name="cd_or_auto" id="cd_or_auto_cd" checked="checked"
64 onchange="$('autoinstalllist').value = ''; $('vmtype-linux-hvm').checked = true" />
65 ${self.fn.cdromList(defaults.cdrom, "$('cd_or_auto_cd').checked = true;$('autoinstalllist').value = '';$('vmtype-linux-hvm').checked = true")}
68 ${self.fn.errorRow('cdrom', err)}
69 ${self.fn.errorRow('cdrom', err)}
72 <td><input type="text" name="owner" value="${defaults.owner}"/></td>
74 ${self.fn.errorRow('owner', err)}
76 <input type="submit" class="button" value="Create it!"/><br />
77 Windows notes: ${self.fn.helppopup('Windows')}
82 <%def name="machineRow(machine)">
85 % if machine.uptime and installing[machine]:
86 <img src="static/power_installing.png" alt="Installing..." />
88 <form action="machine/${machine.machine_id}/command/${'shutdown' if machine.uptime else 'create'}" method="post">
89 <input type="hidden" name="back" value="list"/>
90 <input type="hidden" name="machine_id"
91 value="${machine.machine_id}"/>
92 <input type="submit" class="power ${'on' if machine.uptime else 'off'}" name="action" value="${'Shutdown' if machine.uptime else 'Power on'}"\
94 onclick="return confirm('Are you sure you want to power off this VM?');"
100 <td><a href="machine/${machine.machine_id}">${machine.name}</a></td>
101 <td>${machine.memory}M</td>
102 <td>${machine.owner}</td>
103 <td>${machine.administrator}</td>
105 <td>${', '.join(nic.ip for nic in machine.nics)}</td>
111 ${datetime.timedelta(seconds=int(machine.uptime))}\
115 % if has_vnc[machine] == True:
116 <a href="machine/${machine.machine_id}/vnc">Console</a>\
117 % elif has_vnc[machine] == 'ParaVM':
118 ParaVM${self.fn.helppopup("ParaVM Console")}
119 % elif has_vnc[machine] != 'Off':
125 <td colspan="7" style="padding-left: 1em; color: #666">${machine.description|self.fn.module.nl2br}</td>
129 <%def name="machineList(machines)">
130 <table cellspacing="0" cellpadding="2">
135 <th>Owner${self.fn.helppopup('Owner')}</th>
136 <th>Administrator${self.fn.helppopup('Administrator')}</th>
141 % for machine in machines:
142 ${machineRow(machine)}
145 <script type="text/javascript" src="/static/stripe.js"></script>
146 <script type="text/javascript">
147 document.observe("dom:loaded", function() {
148 stripe($('machinelist').getElementsByTagName('table')[0],
154 <p style="font-size: 125%;"><a href="http://${config.web.hostname}">What is XVM?</a></p>
156 <p>You don't currently control any VMs.</p>
158 <p><a href="list">refresh</a></p>
159 <div id="machinelist">
160 ${machineList(machines)}