blob: d46058f4d2f52c4db2012eec65f2776a377fdeb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<table id="users">
[[ users.forEach(function(user){ ]]
<tr>
<td>
<a href="/staff/users/[[- user.username ]]"><div style="background-image:url([[- user.photo ]])" class="avatar"></div></a>
</td>
<td>
<a href="/staff/users/[[- user.username ]]">[[- user.username ]]</a>
</td>
<td>
[[- user.displayName ]]
</td>
<td class="editLinks">
<a href="/profile/[[- user.username ]]">[view profile]</a>
</td>
<td>
[[- user.last_seen ]]
</td>
</tr>
[[ }) ]]
</table>
|