<html>
[% INCLUDE head.tmpl %]
<body>

[% INCLUDE navbar.tmpl %]

[% INCLUDE actions.tmpl %]
[% IF user.defined %]
[% INCLUDE watchlist.tmpl watchlist = watchlist %]

[% INCLUDE taglist.tmpl tags = info.tags %]

[% INCLUDE upload.tmpl %]
[% END %]

[% IF listed.size == 0 %]
<p>No users have chosen to be listed.</p>
[% ELSE %]
<table id="userlist">
<caption>Listed Users</caption>
<thead>
<tr><th>Name</th><th>Account</th><th>Last Upload</th><th>Watchlist?</th></tr>
</thead>
[% FOREACH u IN listed %]
<tr><td>[% u.gecos %]</td><td><a href="/gallery/[% u.username | url %]/">[% u.username %]</a></td>
<td>[% u.last_upload | truncate(16,'') %]</td>
[% IF user.defined %]
<td>
[% IF u.username != user %]
[% IF u.watching %]
<a class="button" href="/gallery/[% user %]/unwatch/[% u.username %]/listed">Remove</a>
[% ELSE %]
<a class="button" href="/gallery/[% user %]/addwatch/[% u.username %]/listed">Add</a>
[% END %]
[% END %]
</td>
[% END %]
</tr>
[% END %]
</table>
[% END %]

</body>
</html>
