diff options
Diffstat (limited to 'views/staff/_users_recent.ejs')
| -rw-r--r-- | views/staff/_users_recent.ejs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/views/staff/_users_recent.ejs b/views/staff/_users_recent.ejs new file mode 100644 index 0000000..ff3fd55 --- /dev/null +++ b/views/staff/_users_recent.ejs @@ -0,0 +1,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> |
