summaryrefslogtreecommitdiff
path: root/views/staff/_users_recent.ejs
blob: b452c08717350e15d08cf8d18017033758aa1d8b (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
<table id="users">
  <tr>
    <th colspan="4">
      recent users
    </th>
  </tr>
[[ users.forEach(function(user){ ]]
  <tr>
    <td>
      <a href="/staff/users/[[- user.username ]]"><div style="background-image:url([[- user.photo || '/assets/img/profile.png' ]])" class="avatar"></div></a>
    </td>
    <td>
      <a href="/staff/users/[[- user.username ]]">[[- user.username ]]</a>
    </td>
    <td class="editLinks">
      <a href="/profile/[[- user.username ]]">[view profile]</a>
    </td>
    <td>
      [[- user.displayName ]]
    </td>
    <td>
      [[- user.last_seen ]]
    </td>
  </tr>
[[ }) ]]
</table>