1 #from skeleton import skeleton
14 <h2>Create a new VM</h2>
16 <p class="error">We had a problem with your request:</p>
17 #else if $varExists('new_machine')
18 <p>Congratulations! You successfully created a new VM called $new_machine.</p>
20 <form action="create" method="POST">
21 <input type="hidden" name="back" value="list"/>
24 $errorRow('create', $err)
28 <td><input type="text" name="name" value="$defaults.name"/></td>
31 $errorRow('name', $err)
35 <td><input type="text" name="memory" value="$defaults.memory" size=3/> MiB ($max_memory max)</td>
38 $errorRow('memory', $err)
42 <td><input type="text" name="disksize" value="$defaults.disk" size=3/> GiB (${"%0.1f" % ($max_disk-0.05)} max)</td>
45 $errorRow('disk', $err)
50 $helppopup('HVM/ParaVM')#slurp
55 $vmTypeList($defaults.type)
60 $errorRow('vmtype', $err)
65 <td><input type="checkbox" name="clone_from" id="clone_from" value="ice3" onchange="onclone(event)"/>
66 (experimental; 1-2 minutes, and you have an etch machine; root pw is 'password'.)
67 <script type='text/javascript'>function onclone(e){ document.getElementById('cdromlist').value = ''; }</script></td>
69 <td><input type="checkbox" name="clone_from" id="clone_from" value="ice3" disabled="disabled"/> Image cloning is currently disabled for maintenance</td>
73 $errorRow('autoinstall', $err)
78 $helppopup('Autoinstall')#slurp
81 <td><input type="radio" name="cd_or_auto" id="cd_or_auto_auto">
83 $autoList($defaults.cdrom, "document.getElementById('cd_or_auto_auto').checked = true;document.getElementById('cdromlist').value = ''")
84 (experimental; 1-2 minutes, and you have a machine; root pw is 'password'.)
90 <td><input type="radio" name="cd_or_auto" id="cd_or_auto_cd" checked>
92 $cdromList($defaults.cdrom, "document.getElementById('cd_or_auto_cd').checked = true;document.getElementById('autoinstalllist').value = ''")
97 $errorRow('cdrom', $err)
98 $errorRow('cdrom', $err)
101 <td><input type="text" name="owner" value="$defaults.owner"/></td>
104 $errorRow('owner', $err)
107 <input type="submit" class="button" value="Create it!"/>
112 #def machineRow($machine)
114 <td><a href="info?machine_id=$machine.machine_id">$machine.name</a></td>
115 <td>${machine.memory}M</td>
116 <td>$machine.owner</td>
117 <td>$machine.administrator</td>
119 #set $nic = $machine.nics[0]
126 ${datetime.timedelta(seconds=int(machine.uptime))}#slurp
130 #if $has_vnc[$machine] == True
131 <a href="vnc?machine_id=$machine.machine_id">Console</a>#slurp
132 #else if $has_vnc[$machine] != 'Off'
139 <form action="command" method="post">
140 <input type="hidden" name="back" value="list"/>
141 <input type="hidden" name="machine_id"
142 value="$machine.machine_id"/>
143 <input type="submit" class="button" name="action" value="#slurp
144 #if $machine.uptime then 'Power off' else 'Power on'
151 #def machineList($machines)
158 $helppopup('Owner')#slurp
161 <th>Administrator#slurp
163 $helppopup('Administrator')#slurp
171 #for $machine in $machines:
173 $machineRow($machine)
181 <p style="font-size: 125%;">SIPB Virtual Servers is an <strong>alpha service</strong>. <a href="/static/about.html">What does this mean?</a></p>
183 <p>You don't currently control any VMs.</p>
185 <p><a href="list">refresh</a></p>
186 <div id="machinelist">
188 $machineList($machines)