summaryrefslogtreecommitdiff
path: root/views/forum_reply.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/forum_reply.pug
parentd1318d147297161691f5048e1f2cb4e516159144 (diff)
downloadserver-a1fe768c6d40c7c885db1c9843c61527cbe583e3.tar.gz
Rewrite view templates to use Pug engine.
Diffstat (limited to 'views/forum_reply.pug')
-rw-r--r--views/forum_reply.pug39
1 files changed, 39 insertions, 0 deletions
diff --git a/views/forum_reply.pug b/views/forum_reply.pug
new file mode 100644
index 0000000..5b5a3bb
--- /dev/null
+++ b/views/forum_reply.pug
@@ -0,0 +1,39 @@
+//- vim:ts=4:sw=4:
+doctype html
+html
+ head
+ include head
+ title= thread.subject
+ style.
+ input, textarea { width: min(45rem,100%) }
+ table { max-width: 50em; }
+ table .author { border-right: none; }
+ table .time { border-left: none; font-weight: normal; }
+ table .command { border: none; }
+ body
+ include header
+ article
+ h1= thread.subject
+
+ table
+ tr
+ th.author: a(href="/user/"+post.author_name)= post.author_name
+ th.r.time= post.ctime
+ if post.edited
+ |
+ | (edited #{post.mtime})
+ tr
+ td.body(colspan=2)!= post.body
+
+ form(method="post" action="/forum/reply/"+thread.thread_id)
+ p Reply:
+ br
+ textarea(
+ name="body"
+ rows=15
+ cols=80
+ maxlength=32000
+ required
+ )
+ p
+ button(type="submit") Submit