fix: 修订状态标识仅对作者可见,不公开显示

This commit is contained in:
2026-05-30 20:28:59 +08:00
parent eabc1e7d3d
commit 95311704fe

View File

@ -16,7 +16,7 @@
{{if .Post.IsLocked}}
<span class="post-status post-status-locked">已锁定</span>
{{end}}
{{if .Post.PendingBody}}
{{if and .Post.PendingBody (eq $.Post.UserID $.UID)}}
<span class="post-status post-status-revision">修订审核中</span>
{{end}}
</div>