improve JC's previous cc PR

remotes/1693176582716663532/tmp_refs/heads/watchparty
Aevann1 2022-09-25 04:32:51 +02:00
parent a04b4473d4
commit a3a7ec6296
1 changed files with 2 additions and 2 deletions

View File

@ -501,8 +501,8 @@
{% endif %}
</div>
{% if v and v.id != c.author_id and c.body %}
<div autocomplete="off" class="markdown d-none card border my-2 p-3 comment-box form-control rounded" id="markdown-{{c.id}}" readonly>{{c.plainbody(v).strip()}}</div>
{% if v and v.id != c.author_id and c.body and not (c.post and c.post.club and not v.paid_dues) %}
<div autocomplete="off" class="markdown d-none card border my-2 p-3 comment-box form-control rounded" id="markdown-{{c.id}}" readonly>{{c.body.strip()}}</div>
{% endif %}