Files
znc/modules/data/lastseen/tmpl/index.tmpl
2016-09-22 12:39:00 -04:00

30 lines
845 B
Cheetah

<? INC Header.tmpl ?>
<div class="toptable">
<table class="data">
<thead>
<tr>
<th>User</th>
<th>Last Seen</th>
<th>Info</th>
<? IF WebAdminLoaded ?><td>Action</td><? ENDIF ?>
</tr>
</thead>
<tbody>
<? LOOP UserLoop ?>
<tr class="<? IF __EVEN__ ?>evenrow<? ELSE ?>oddrow<? ENDIF ?>">
<td><? VAR Username ?></td>
<td><? VAR LastSeen DEFAULT="- unknown -" ?></td>
<td><? VAR Info ?></td>
<? IF WebAdminLoaded TOP ?><td><span class="nowrap">
[<a href="<? VAR URIPrefix TOP ?>/mods/global/webadmin/edituser?user=<?VAR Username ESC=URL?>">Edit</a>]
<? IF !IsSelf ?>[<a href="<? VAR URIPrefix TOP ?>/mods/global/webadmin/deluser?user=<?VAR Username ESC=URL?>">Delete</a>]<? ENDIF ?>
</span></td><? ENDIF ?>
</tr>
<? ENDLOOP ?>
</tbody>
</table>
</div>
<? INC Footer.tmpl ?>