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
@@ -40,7 +40,7 @@
${c.context_url(request.GET)}
-
+
@@ -153,6 +153,15 @@
// inject comments into they proper positions
var file_comments = YUQ('.inline-comment-placeholder');
renderInlineComments(file_comments);
+
+ YUE.on(YUD.get('show_changeset_status_box'),'change',function(e){
+ if(e.currentTarget.checked){
+ YUD.setStyle('status_block_container','display','');
+ }
+ else{
+ YUD.setStyle('status_block_container','display','none');
+ }
+ })
})