| [113] | 1 | #from skeleton import skeleton |
|---|
| 2 | #extends skeleton |
|---|
| 3 | |
|---|
| 4 | #def title |
|---|
| [133] | 5 | Info on $machine.name |
|---|
| [113] | 6 | #end def |
|---|
| 7 | |
|---|
| [205] | 8 | #def infoTable() |
|---|
| [430] | 9 | <h2>Info</h2> |
|---|
| [133] | 10 | <table> |
|---|
| 11 | #for $key, $value in $fields |
|---|
| 12 | <tr><td>$key:</td><td>$value</td></tr> |
|---|
| 13 | #end for |
|---|
| 14 | </table> |
|---|
| [205] | 15 | #end def |
|---|
| [133] | 16 | |
|---|
| [205] | 17 | #def commands() |
|---|
| [301] | 18 | <form action="command" method="POST"> |
|---|
| [207] | 19 | <input type="hidden" name="back" value="info"/> |
|---|
| [133] | 20 | <input type="hidden" name="machine_id" value="$machine.machine_id"/> |
|---|
| 21 | <table> |
|---|
| 22 | |
|---|
| [430] | 23 | <tr><td colspan=3> |
|---|
| [133] | 24 | #if $on |
|---|
| 25 | #if $has_vnc |
|---|
| [430] | 26 | <strong><a href="vnc?machine_id=$machine.machine_id">Get Console</a></strong> |
|---|
| [133] | 27 | #else |
|---|
| [430] | 28 | VNC console not enabled; still booting? |
|---|
| [133] | 29 | #end if |
|---|
| 30 | #else |
|---|
| 31 | |
|---|
| 32 | #end if |
|---|
| 33 | </td></tr> |
|---|
| 34 | <tr> |
|---|
| 35 | #if $on |
|---|
| [430] | 36 | <td><button type="submit" class="button" name="action" value="Power off">Power off (hard)</button></td> |
|---|
| [436] | 37 | <td><button type="submit" class="button" name="action" value="Shutdown">Shut down</button></td> |
|---|
| [207] | 38 | <td><input type="submit" class="button" name="action" value="Reboot"/></td> |
|---|
| [133] | 39 | #else |
|---|
| [207] | 40 | <td><input type="submit" class="button" name="action" value="Power on"/></td> |
|---|
| [133] | 41 | #end if |
|---|
| 42 | <td>Boot CD:</td> |
|---|
| [443] | 43 | <td>$cdromList()</td> |
|---|
| [133] | 44 | </tr> |
|---|
| 45 | <tr> |
|---|
| [205] | 46 | <td><input type="submit" class="button" name="action" value="Delete VM" onclick="return confirm('Are you sure that you want to delete this VM?');"/></td> |
|---|
| [133] | 47 | </tr> |
|---|
| 48 | </table> |
|---|
| 49 | </form> |
|---|
| [205] | 50 | #end def |
|---|
| 51 | |
|---|
| 52 | #def modifyForm() |
|---|
| 53 | #if $err |
|---|
| 54 | <p class="error">We had a problem with your request:</p> |
|---|
| 55 | #else if $varExists('new_machine') |
|---|
| 56 | <p>Successfully modified.</p> |
|---|
| 57 | #end if |
|---|
| [133] | 58 | #if $on |
|---|
| [166] | 59 | (To edit ram, disk size, or machine name, turn off the machine first.) |
|---|
| [133] | 60 | #end if |
|---|
| [207] | 61 | <form action="modify" method="POST"> |
|---|
| [205] | 62 | <input type="hidden" name="machine_id" value="$defaults.machine_id"/> |
|---|
| [133] | 63 | <table> |
|---|
| [205] | 64 | <tr><td>Owner${helppopup("owner")}:</td><td><input type="text" name="owner", value="$defaults.owner"/></td></tr> |
|---|
| 65 | $errorRow('owner', $err) |
|---|
| 66 | <tr><td>Administrator${helppopup("administrator")}:</td><td><input type="text" name="administrator", value="$defaults.administrator"/></td></tr> |
|---|
| 67 | $errorRow('administrator', $err) |
|---|
| 68 | <tr><td>Contact email:</td><td><input type="text" name="contact" value="$defaults.contact"/></td></tr> |
|---|
| 69 | $errorRow('contact', $err) |
|---|
| [133] | 70 | #if not $on |
|---|
| [205] | 71 | <tr><td>Machine Name:</td><td><input type="text" name="name" value="$defaults.name"/></td></tr> |
|---|
| 72 | $errorRow('name', $err) |
|---|
| [440] | 73 | <tr> |
|---|
| 74 | <td>HVM/ParaVM$helppopup('hvm_paravm')</td> |
|---|
| 75 | <td>$vmTypeList($defaults.type)</td> |
|---|
| 76 | </tr> |
|---|
| [211] | 77 | <tr><td>Ram:</td><td><input type="text" size=3 name="memory" value="$defaults.memory"/>MiB (max $max_mem)</td></tr> |
|---|
| [205] | 78 | $errorRow('memory', $err) |
|---|
| [211] | 79 | <tr><td>Disk:</td><td><input type="text" size=3 name="disk" value="$defaults.disk"/>GiB (max $max_disk)</td><td>WARNING: Modifying disk size may corrupt your data.</td></tr> |
|---|
| [205] | 80 | $errorRow('disk', $err) |
|---|
| 81 | #else |
|---|
| 82 | $errorRow('name', $err) |
|---|
| 83 | $errorRow('memory', $err) |
|---|
| 84 | $errorRow('disk', $err) |
|---|
| [133] | 85 | #end if |
|---|
| 86 | <tr><td><input type="submit" class="button" name="action" value="Change"/></td></tr> |
|---|
| 87 | </table> |
|---|
| 88 | </form> |
|---|
| [205] | 89 | #end def |
|---|
| [133] | 90 | |
|---|
| [205] | 91 | #def body |
|---|
| 92 | <div id="info"> |
|---|
| 93 | $infoTable() |
|---|
| 94 | </div> |
|---|
| 95 | |
|---|
| [430] | 96 | <h2>Commands</h2> |
|---|
| [205] | 97 | <div id="commands"> |
|---|
| 98 | $commands() |
|---|
| 99 | </div> |
|---|
| [430] | 100 | <h2>Settings</h2> |
|---|
| [205] | 101 | <div id="modify"> |
|---|
| 102 | $modifyForm() |
|---|
| 103 | </div> |
|---|
| [113] | 104 | #end def |
|---|