2012-06-18 09:10:45 -05:00

31 lines
771 B
Cheetah

<html>
<head>
<style>
form {
display: inline;
}
</style>
</head>
<body>
<p>You are <a href="/hosting">hosting</a>
$service for <a href="/hosting/$client/">$client</a> at:</p>
#if $locations
<ul>
#for $location in $locations
<li><a href="$location">$location</a>
<form method="post" action="/hosting/$client/$service">
<input type="hidden" name="delete" value="$location" />
<input type="submit" value="Delete" />
</form>
</li>
#end for
</ul>
#end if
<hr />
<form method="post" action="/hosting/$client/$service">
<label>Location: <input name="put" /></label>
<input type="submit" value="Create New Location" />
</form>
</body>
</html>