source: trunk/packages/sipb-xen-www/code/templates/list.tmpl @ 621

Last change on this file since 621 was 621, checked in by geofft, 16 years ago

two small prettifications

File size: 5.3 KB
RevLine 
[113]1#from skeleton import skeleton
2#extends skeleton
[535]3#import datetime
[113]4
[205]5
[113]6#def title
[422]7VM List
[113]8#end def
9
[425]10#def createForm()
[205]11#if $cant_add_vm
12<p>$cant_add_vm</p>
[113]13#else
[425]14<h2>Create a new VM</h2>
[205]15#if $err
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>
19#end if
[207]20    <form action="create" method="POST">
21    <input type="hidden" name="back" value="list"/>
[205]22      <table>
[447]23#filter None
[205]24      $errorRow('create', $err)
[447]25#end filter
[205]26        <tr>
27          <td>Name</td>
[621]28          <td><input type="text" name="name" value="$defaults.name"/>.xvm.mit.edu</td>
[205]29        </tr>
[447]30#filter None
[205]31$errorRow('name', $err)
[447]32#end filter
[205]33        <tr>
[609]34          <td>Description</td>
35          <td><textarea name="description" rows="4" cols="60">$defaults.description</textarea></td>
36        </tr>
37#filter None
38$errorRow('description', $err)
39#end filter
40        <tr>
[205]41          <td>Memory</td>
[229]42          <td><input type="text" name="memory" value="$defaults.memory" size=3/> MiB ($max_memory max)</td>
[205]43        </tr>
[447]44#filter None
[205]45$errorRow('memory', $err)
[447]46#end filter
[205]47        <tr>
48          <td>Disk</td>
[572]49          <td><input type="text" name="disksize" value="$defaults.disk" size=3/> GiB (${"%0.1f" % ($max_disk-0.05)} max)</td>
[205]50        </tr>
[447]51#filter None
[205]52$errorRow('disk', $err)
[447]53#end filter
[440]54        <tr>
[447]55          <td>HVM/ParaVM#slurp
56#filter None
[536]57$helppopup('HVM/ParaVM')#slurp
[447]58#end filter
59</td>
60          <td>
61#filter None
62$vmTypeList($defaults.type)
63#end filter
64</td>
[440]65        </tr>
[447]66#filter None
[205]67$errorRow('vmtype', $err)
[447]68#end filter
[448]69        <tr>
70          <td>Clone image?</td>
[540]71#if $can_clone
[448]72          <td><input type="checkbox" name="clone_from" id="clone_from" value="ice3" onchange="onclone(event)"/>
73              (experimental; 1-2 minutes, and you have an etch machine; root pw is 'password'.)
74              <script type='text/javascript'>function onclone(e){ document.getElementById('cdromlist').value = ''; }</script></td>
[540]75#else
[559]76          <td><input type="checkbox" name="clone_from" id="clone_from" value="ice3" disabled="disabled"/> Image cloning is currently disabled for maintenance</td>
[540]77#end if
[448]78        </tr>
79#filter None
80$errorRow('autoinstall', $err)
81#end filter
82        <!--<tr>
[447]83          <td>Autoinstall#slurp
84#filter None
[536]85$helppopup('Autoinstall')#slurp
[447]86#end filter
87</td>
88          <td><input type="radio" name="cd_or_auto" id="cd_or_auto_auto">
89#filter None
90$autoList($defaults.cdrom, "document.getElementById('cd_or_auto_auto').checked = true;document.getElementById('cdromlist').value = ''")
[443]91              (experimental; 1-2 minutes, and you have a machine; root pw is 'password'.)
[447]92#end filter
[443]93          </input>
[448]94        </tr>-->
[228]95        <tr>
[443]96          <td>Boot CD</td>
[447]97          <td><input type="radio" name="cd_or_auto" id="cd_or_auto_cd" checked>
98#filter None
99$cdromList($defaults.cdrom, "document.getElementById('cd_or_auto_cd').checked = true;document.getElementById('autoinstalllist').value = ''")
100#end filter
101</td>
[443]102          </input>
[340]103        </tr>
104$errorRow('cdrom', $err)
[443]105$errorRow('cdrom', $err)
[340]106        <tr>
[228]107          <td>Owner</td>
108          <td><input type="text" name="owner" value="$defaults.owner"/></td>
109        </tr>
[447]110#filter None
[228]111        $errorRow('owner', $err)
[447]112#end filter
[205]113      </table>
114      <input type="submit" class="button" value="Create it!"/>
115    </form>
116#end if
117#end def
118
119#def machineRow($machine)
[113]120      <tr>
[618]121        <td rowspan="2">
122          <form action="command" method="post">
123            <input type="hidden" name="back" value="list"/>
124            <input type="hidden" name="machine_id"
125                   value="$machine.machine_id"/>
126<input type="submit" class="button" name="action" value="#slurp
127#if $machine.uptime then 'Power off' else 'Power on'
128"/>
129          </form>
130        </td>
[113]131        <td><a href="info?machine_id=$machine.machine_id">$machine.name</a></td>
132        <td>${machine.memory}M</td>
133        <td>$machine.owner</td>
[234]134        <td>$machine.administrator</td>
[113]135#if $machine.nics
136#set $nic = $machine.nics[0]
137        <td>$nic.ip</td>
138#else
139        <td></td>
140#end if
[133]141<td>#slurp
[205]142#if $machine.uptime
[535]143${datetime.timedelta(seconds=int(machine.uptime))}#slurp
[133]144#end if
145</td>
146        <td>#slurp
[144]147#if $has_vnc[$machine] == True
[133]148<a href="vnc?machine_id=$machine.machine_id">Console</a>#slurp
[424]149#else if $has_vnc[$machine] != 'Off'
[447]150#filter None
[144]151$has_vnc[$machine]
[447]152#end filter
[133]153#end if
154</td>
[113]155      </tr>
[609]156      <tr>
157        <td colspan="7" style="padding-left: 1em; color: #666">$machine.description</td>
158      </tr>
[205]159#end def
160
161#def machineList($machines)
[618]162    <table cellspacing="0" cellpadding="2">
[205]163      <tr>
[618]164        <th></th>
[424]165        <th>Name</th>
166        <th>Memory</th>
[447]167        <th>Owner#slurp
168#filter None
[536]169$helppopup('Owner')#slurp
[447]170#end filter
171</th>
172        <th>Administrator#slurp
173#filter None
[536]174$helppopup('Administrator')#slurp
[447]175#end filter
176</th>
[424]177        <th>IP</th>
178        <th>Uptime</th>
179        <th>VNC</th>
180      </tr>
[205]181      #for $machine in $machines:
[447]182    #filter None
[205]183        $machineRow($machine)
[447]184    #end filter
[113]185      #end for
186    </table>
[618]187    <script type="text/javascript" src="/static/stripe.js"></script>
188    <script type="text/javascript">
189        document.observe("dom:loaded", function() {
190            stripe(\$('machinelist').getElementsByTagName('table')[0],
191                   'stripedrow');
192        });
193    </script>
[205]194#end def
195
196
197#def body
[423]198<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>
[205]199#if not $machines
200<p>You don't currently control any VMs.</p>  
[144]201#end if
[207]202    <p><a href="list">refresh</a></p>
[205]203    <div id="machinelist">
[447]204    #filter None
[205]205    $machineList($machines)
[447]206    #end filter
[205]207    </div>
[447]208#filter None
[425]209$createForm()
[447]210#end filter
[113]211#end def
Note: See TracBrowser for help on using the repository browser.