blob: 0b92cc6136376f4e606c69a96964e0ab87b69a2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{strip}
<div class="admin wiki">
<div class="header">
<h1>{tr}Watches{/tr} {tr}of{/tr} <a href="{$gContent->mInfo.display_url}">{$gContent->mInfo.title|escape}</a></h1>
</div>
<div class="body">
{if $watches}
<table border=1>
<tr><th>User</th>
<th>Email</th>
</tr>
{foreach item=watch from=$watches}
<tr><td>{$watch.login}</td>
<td>{$watch.email}</td>
</tr>
{/foreach}
</table>
{else}
{tr}No Watches found for this page.{/tr}
{/if}
</div><!-- end .body -->
</div> <!-- end .wiki -->
{/strip}
|