hide removed posts. fixes #53

This commit is contained in:
Ryan Stafford 2023-07-26 21:25:55 -04:00
parent 6c80f67535
commit a689604470

View file

@ -1,4 +1,4 @@
<div class="comment{{if or (lt .P.Counts.Score -5) .P.Comment.Deleted }} hidden{{end}}" id="c{{.P.Comment.ID}}"> <div class="comment{{if or (lt .P.Counts.Score -5) .P.Comment.Deleted .P.Comment.Removed }} hidden{{end}}" id="c{{.P.Comment.ID}}">
{{ if .State.Session }} {{ if .State.Session }}
<div class="score"> <div class="score">
<form class="link-btn{{ if eq .P.MyVote.String "1"}} like{{ else if eq .P.MyVote.String "-1"}} dislike{{end}}" method="POST"> <form class="link-btn{{ if eq .P.MyVote.String "1"}} like{{ else if eq .P.MyVote.String "-1"}} dislike{{end}}" method="POST">
@ -38,7 +38,9 @@
{{ template "create_comment.html" .State }} {{ template "create_comment.html" .State }}
{{ else }} {{ else }}
{{if .P.Comment.Deleted}} {{if .P.Comment.Deleted}}
[removed] [deleted]
{{else if .P.Comment.Removed }}
[removed by mod]
{{else}} {{else}}
<div {{ if and .Selected (not .State.XHR) (ne .State.Op "reply")}}class="highlight" {{end}}> <div {{ if and .Selected (not .State.XHR) (ne .State.Op "reply")}}class="highlight" {{end}}>
{{ markdown .State.Host .P.Comment.Content }} {{ markdown .State.Host .P.Comment.Content }}