Added the other missing template.

This commit is contained in:
Nick Daly 2012-05-31 15:00:43 -05:00
parent e8a4ca44e7
commit 2b19b2bc37
2 changed files with 24 additions and 0 deletions

View File

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

View File

@ -0,0 +1,12 @@
<html>
<body>
<p>You're <a href="/hosting">hosting</a> these services for $client:</p>
#if $services
<ul>
#for $service in $services
<li><a href="/hosting/$client/$service">$service</a></li>
#end for
</ul>
#end if
</body>
</html>