Changeset 2413 for package_branches/invirt-web/cherrypy/code/templates
- Timestamp:
- Aug 9, 2009, 6:45:36 PM (15 years ago)
- Location:
- package_branches/invirt-web/cherrypy/code/templates
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
package_branches/invirt-web/cherrypy/code/templates/info.mako
r2411 r2413 22 22 on Athena. <a href="https://xvm.scripts.mit.edu/wiki/SerialConsole">(more info)</a> 23 23 % elif has_vnc: 24 <strong><a href=" vnc?machine_id=${machine.machine_id}">Get Console</a></strong>24 <strong><a href="machine/${machine.machine_id}/vnc">Get Console</a></strong> 25 25 % else: 26 26 VNC console not enabled; still booting? -
package_branches/invirt-web/cherrypy/code/templates/list.mako
r2412 r2413 96 96 </form> 97 97 </td> 98 <td><a href=" info?machine_id=${machine.machine_id}">${machine.name}</a></td>98 <td><a href="machine/${machine.machine_id}">${machine.name}</a></td> 99 99 <td>${machine.memory}M</td> 100 100 <td>${machine.owner}</td> … … 112 112 <td>\ 113 113 % if has_vnc[machine] == True: 114 <a href=" vnc?machine_id=${machine.machine_id}">Console</a>\114 <a href="machine/${machine.machine_id}/vnc">Console</a>\ 115 115 % elif has_vnc[machine] == 'ParaVM': 116 116 ParaVM${self.fn.helppopup("ParaVM Console")} -
package_branches/invirt-web/cherrypy/code/templates/skeleton.mako
r2410 r2413 6 6 <html> 7 7 <head><title>${self.title()} — XVM</title> 8 <base href="${cherrypy.request.base}" /> 8 9 <link href="static/favicon.ico" type="image/x-icon" rel="shortcut icon"> 9 10 <link rel="stylesheet" href="static/style.css" type="text/css" /> … … 54 55 <li><a href="list">List</a></li> 55 56 % if machine: 56 <li><a href=" info?machine_id=${machine.machine_id}">Info</a></li>57 <li><a href=" vnc?machine_id=${machine.machine_id}">Console</a></li>57 <li><a href="machine/${machine.machine_id}">Info</a></li> 58 <li><a href="machine/${machine.machine_id}/vnc">Console</a></li> 58 59 % endif 59 60 <li><a href="help">Help</a></li>
Note: See TracChangeset
for help on using the changeset viewer.