Add fluoridated reply to popup

This commit is contained in:
r 2020-11-09 12:10:29 +00:00
parent 3a3a8672ba
commit c3f39210d8
8 changed files with 128 additions and 8 deletions

View file

@ -0,0 +1,15 @@
{{with $s := .Data}}
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
<div class="page-title"> Thread </div>
{{range .Statuses}}
{{template "status.tmpl" (WithContext . $.Ctx)}}
{{if $s.PostContext.ReplyContext}}{{if eq .ID $s.PostContext.ReplyContext.InReplyToID}}
{{template "postform.tmpl" (WithContext $s.PostContext $.Ctx)}}
{{end}}{{end}}
{{end}}
{{template "footer.tmpl"}}
{{end}}