diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-11-21 19:44:01 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2021-11-21 19:44:01 +0100 |
commit | 18f196400352eb8c0bb6f6dd30890b8cc272ad15 (patch) | |
tree | 3a541981566242b6d2df862ea2963fb4e2f9ee35 /views/head.pug | |
parent | a1fe768c6d40c7c885db1c9843c61527cbe583e3 (diff) | |
download | server-18f196400352eb8c0bb6f6dd30890b8cc272ad15.tar.gz |
Use grid-layout instead of table for forum posts.
Diffstat (limited to 'views/head.pug')
-rw-r--r-- | views/head.pug | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/views/head.pug b/views/head.pug index ae6bf30..f896ce2 100644 --- a/views/head.pug +++ b/views/head.pug @@ -5,6 +5,21 @@ link(rel="icon" href="/favicon.svg") link(rel="stylesheet" href="/fonts/fonts.css") link(rel="stylesheet" href="/style.css") +mixin forumpost(row,show_buttons) + .post + .from: a(href="/user/"+row.author_name)= row.author_name + .time= row.ctime + if row.edited + | + | (edited #{row.mtime}) + .body!= row.body + if show_buttons && user + .edit + if row.author_id === user.user_id + | #[a(href="/forum/edit/"+row.post_id) Edit] + | + | #[a(href="/forum/reply/"+row.post_id) Reply] + mixin gametable(status,table,hide_title=0) table tr |