+ {{if canReply .User .Root}}
+
+ Reply
+
+
+ {{end}}
+ {{if canEditPost .User .Post}}
+
+ Edit
+
+
+ {{end}}
+ {{if and (not .Post.ParentID) (isAdmin .User)}}
+
+ {{end}}
+
+{{end}}
+
+{{define "threadReply"}}
+{{$ctx := .}}
+
+
+ {{postLabel .Post}}
+
+ {{.Post.AuthorName}}
+ ·
+
+ {{if isEdited .Post}}Edited{{end}}
+
+
+ {{.Post.Body}}
+ {{template "postActions" .}}
+ {{if .Post.Replies}}
+
+ {{range .Post.Replies}}
+ {{template "threadReply" (postCtx $ctx.User $ctx.CSRF $ctx.Root . (add $ctx.Depth 1))}}
+ {{end}}
+
+ {{end}}
+
+{{end}}
diff --git a/templates/partials/_vote.html b/templates/partials/_vote.html
index bdaf1ad..d7938cf 100644
--- a/templates/partials/_vote.html
+++ b/templates/partials/_vote.html
@@ -1,26 +1,26 @@
{{define "vote"}}
-