List in wrong place.

This commit is contained in:
Tom Galloway 2012-06-15 08:57:30 +01:00
parent e60fa63e22
commit 51dfa91dcf
2 changed files with 2 additions and 4 deletions

View File

@ -11,12 +11,11 @@
#if $services
<ul>
#for $service in $services
<li><a href="/hosting/$client/$service">$service</a>
<li><a href="/hosting/$client/$service">$service</a></li>
<form method="post" action="/hosting/$client">
<input type="hidden" name="delete" value="$service" />
<input type="Submit" value="Delete" />
</form>
</li>
#end for
</ul>
#end if

View File

@ -11,12 +11,11 @@
<p>You are <a href="/hosting">hosting</a> services for:</p>
<ul>
#for $client in $clients
<li><a href="/hosting/$client">$client</a>
<li><a href="/hosting/$client">$client</a></li>
<form method="post" action="/hosting">
<input type="hidden" name="delete" value="$client" />
<input type="Submit" value="Delete" />
</form>
</li>
#end for
</ul>
#end if