diff --git a/rhodecode/templates/changeset/changeset.html b/rhodecode/templates/changeset/changeset.html
--- a/rhodecode/templates/changeset/changeset.html
+++ b/rhodecode/templates/changeset/changeset.html
@@ -33,6 +33,12 @@
${h.fmt_date(c.changeset.date)}
+
+ %if c.statuses:
+
[${h.changeset_status_lbl(c.statuses[0])}]
+
+ %endif
+
})
@@ -128,8 +134,10 @@
<%namespace name="comment" file="/changeset/changeset_file_comment.html"/>
${comment.comment_inline_form(c.changeset)}
- ## render comments
- ${comment.comments(c.changeset)}
+ ## render comments main comments form and it status
+ ${comment.comments(h.url('changeset_comment', repo_name=c.repo_name, revision=c.changeset.raw_id),
+ h.changeset_status(c.rhodecode_db_repo, c.changeset.raw_id))}
+