projects
/
invirt/packages/invirt-web.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Help!
[invirt/packages/invirt-web.git]
/
templates
/
command.tmpl
1
#from skeleton import skeleton
2
#extends skeleton
3
4
#def title
5
$command $machine.name
6
#end def
7
8
9
#def body
10
<h1>Command succesful</h1>
11
<p>$command ${machine.name} was successful.</p>
12
#if $command == "Delete VM"
13
<p><a href="list">Return</a></p>
14
#else
15
<p><a href="info?machine_id=${machine.machine_id}">Return</a></p>
16
#end if
17
#end def