Updated templates.

This commit is contained in:
Nick Daly 2012-05-30 16:27:59 -05:00
parent 9da1fc8893
commit 6859ec76c0
4 changed files with 9 additions and 23 deletions

View File

@ -1,14 +0,0 @@
<html>
<body>
<p>You are <a href="/consuming">consuming</a>
<a href="/consuming/$service">$service</a> from
<a href="/consuming/$service/$host">$host</a> at:</p>
#if $locations
<ul>
#for $location in $locations
<li><a href="$location">$location</a></li>
#end for
</ul>
#end if
</body>
</html>

View File

@ -1,10 +1,11 @@
<html>
<body>
<p>You are <a href="/consuming">consuming</a> $service from:</p>
#if $hosts
<p>You are <a href="/consuming">consuming</a> $service from
<a href="/consuming/$host">$host</a> at:</p>
#if $locations
<ul>
#for $host in $hosts
<li><a href="/consuming/$service/$host">$host</a></li>
#for $location in $locations
<li><a href="$location">$location</a></li>
#end for
</ul>
#end if

View File

@ -1,10 +1,10 @@
<html>
<body>
#if $services
<p>You are consuming these services:</p>
#if $hosts
<p>You are consuming services from these hosts:</p>
<ul>
#for $service in $services
<li><a href="/consuming/$service">$service</a></li>
#for $host in $hosts
<li><a href="/consuming/$host">$host</a></li>
#end for
</ul>
#end if

View File

@ -1,6 +1,5 @@
<html>
<body>
<p>$message</p>
<p>You're <a href="/hosting">hosting</a>
$service for <a href="/hosting/$client/">$client</a> at:</p>
#if $locations