diff options
author | r <r@freesoftwareextremist.com> | 2021-09-05 17:17:59 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2021-09-05 17:33:58 +0000 |
commit | 54c42455f393c5ae8ebdb19884d40ebd9a18f755 (patch) | |
tree | deecf729e7ba3565058dca6678e2b78805206097 /templates/quickreply.tmpl | |
parent | 4351155f67963b58feeba0d16bb998862ceb4d69 (diff) | |
download | bloat-54c42455f393c5ae8ebdb19884d40ebd9a18f755.tar.gz bloat-54c42455f393c5ae8ebdb19884d40ebd9a18f755.zip |
Add quick reply
Diffstat (limited to 'templates/quickreply.tmpl')
-rw-r--r-- | templates/quickreply.tmpl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/quickreply.tmpl b/templates/quickreply.tmpl new file mode 100644 index 0000000..97ff20a --- /dev/null +++ b/templates/quickreply.tmpl @@ -0,0 +1,12 @@ +{{with $s := .Data}} +{{template "header.tmpl" (WithContext .CommonData $.Ctx)}} +<div class="page-title"> Quick Reply </div> + +{{if .Ancestor}} +{{template "status.tmpl" (WithContext .Ancestor $.Ctx)}} +{{end}} +{{template "status.tmpl" (WithContext .Status $.Ctx)}} +{{template "postform.tmpl" (WithContext $s.PostContext $.Ctx)}} + +{{template "footer.tmpl"}} +{{end}} |