diff --git a/rhodecode/templates/changeset/changeset_file_comment.html b/rhodecode/templates/changeset/changeset_file_comment.html --- a/rhodecode/templates/changeset/changeset_file_comment.html +++ b/rhodecode/templates/changeset/changeset_file_comment.html @@ -117,7 +117,11 @@ %for co in c.comments:
+ ## only render comments that are not from pull request, or from + ## pull request and a status change + %if not co.pull_request or co.pull_request and co.status_change: ${comment_block(co)} + %endif
%endfor