quickreply.tmpl 362 B

123456789101112
  1. {{with $s := .Data}}
  2. {{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
  3. <div class="page-title"> Quick Reply </div>
  4. {{if .Ancestor}}
  5. {{template "status.tmpl" (WithContext .Ancestor $.Ctx)}}
  6. {{end}}
  7. {{template "status.tmpl" (WithContext .Status $.Ctx)}}
  8. {{template "postform.tmpl" (WithContext $s.PostContext $.Ctx)}}
  9. {{template "footer.tmpl"}}
  10. {{end}}