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