summaryrefslogtreecommitdiff
path: root/views/staff/_users_recent.ejs
blob: ff3fd55b11aa42c77e77f460b67446f609ff2986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<table id="users">
  <tr>
    <th colspan="4">
      recent users
    </th>
  </tr>
[[ users.forEach(function(user){ ]]
  <tr>
    <td>
      <a href="/staff/users/[[- user.username ]]">[[- user.username ]]</a>
    </td>
    <td>
      [[- user.displayName ]]
    </td>
    <td>
      [[- user.last_seen ]]
    </td>
  </tr>
[[ }) ]]
</table>