summaryrefslogtreecommitdiff
path: root/views/staff/_users.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'views/staff/_users.ejs')
-rw-r--r--views/staff/_users.ejs15
1 files changed, 15 insertions, 0 deletions
diff --git a/views/staff/_users.ejs b/views/staff/_users.ejs
new file mode 100644
index 0000000..ab8c9b3
--- /dev/null
+++ b/views/staff/_users.ejs
@@ -0,0 +1,15 @@
+<table id="users">
+[[ 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>