summaryrefslogtreecommitdiff
path: root/views/user_list.pug
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-11-20 19:47:08 +0100
committerTor Andersson <tor@ccxvii.net>2021-11-21 12:48:15 +0100
commita1fe768c6d40c7c885db1c9843c61527cbe583e3 (patch)
treec397e7d6796049607d6348c538621d1e8809a847 /views/user_list.pug
parentd1318d147297161691f5048e1f2cb4e516159144 (diff)
downloadserver-a1fe768c6d40c7c885db1c9843c61527cbe583e3.tar.gz
Rewrite view templates to use Pug engine.
Diffstat (limited to 'views/user_list.pug')
-rw-r--r--views/user_list.pug26
1 files changed, 26 insertions, 0 deletions
diff --git a/views/user_list.pug b/views/user_list.pug
new file mode 100644
index 0000000..b4383f7
--- /dev/null
+++ b/views/user_list.pug
@@ -0,0 +1,26 @@
+//- vim:ts=4:sw=4:
+doctype html
+html
+ head
+ include head
+ title User List
+ style.
+ td.avatar { padding: 0; width: 80px; }
+ td.avatar img { display: block; width: 80px; height: 80px; }
+ body
+ include header
+ article
+ h1 User List
+
+ table
+ tr
+ th Avatar
+ th Name
+ th Member since
+ th Last seen
+ each row in user_list
+ tr
+ td.avatar: img(src=row.avatar)
+ td.name: a(href="/user/"+row.name)= row.name
+ td= row.ctime
+ td= row.atime