%page expression_filter="h"/>
<%inherit file="skeleton.mako" />
<%def name="title()">
Info on ${machine.name}
%def>
<%def name="infoTable()">
Info
% for key, value in fields:
${key}: | ${value} |
% endfor
%def>
<%def name="commands()">
% if on:
% if not machine.type.hvm:
Console access: type
ssh ${machine.name}@${config.console.hostname}
on Athena. (more info)
% elif has_vnc:
Get Console
% else:
VNC console not enabled; still booting?
% endif
% endif
%def>
<%def name="modifyForm()">
% if err:
We had a problem with your request:
% elif new_machine:
Successfully modified.
% endif
% if on:
(To edit ram, disk size, or machine name, turn off the machine first.)
% endif
%def>
${infoTable()}
Commands
${commands()}
Settings
${modifyForm()}