summaryrefslogtreecommitdiff
path: root/views/staff/_users.ejs
blob: 46811b6abea3000e5fb51f0f78b6acce46a09fe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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>
      <a href="/staff/users/[[- user.username ]]/media">[view media]</a>
      <a href="https://vvalls.recurly.com/accounts/[[- user._id ]]">[recurly]</a>
    </td>
    <td>
      [[- user.last_seen ]]
    </td>
  </tr>
[[ }) ]]
</table>