diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css
--- a/kallithea/public/css/style.css
+++ b/kallithea/public/css/style.css
@@ -950,7 +950,7 @@ tbody .yui-dt-editable { cursor: pointer
}
#content div.box div.message {
- clear: both;
+ float: left;
overflow: hidden;
margin: 0;
padding: 5px 0;
diff --git a/kallithea/templates/compare/compare_cs.html b/kallithea/templates/compare/compare_cs.html
--- a/kallithea/templates/compare/compare_cs.html
+++ b/kallithea/templates/compare/compare_cs.html
@@ -63,7 +63,16 @@
|
- ${h.urlify_commit(cs.message, c.repo_name)} |
+
+
+ %for tag in cs.tags:
+
+ ${h.link_to(tag,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
+
+ %endfor
+
+ ${h.urlify_commit(cs.message, c.repo_name)}
+ |
%endfor
diff --git a/kallithea/templates/pullrequests/pullrequest_show.html b/kallithea/templates/pullrequests/pullrequest_show.html
--- a/kallithea/templates/pullrequests/pullrequest_show.html
+++ b/kallithea/templates/pullrequests/pullrequest_show.html
@@ -197,7 +197,16 @@ ${self.repo_context_bar('showpullrequest
${cs.date} |
${h.link_to(h.show_id(cs),h.url('changeset_home',repo_name=c.cs_repo.repo_name,revision=cs.raw_id))} |
- ${h.urlify_commit(cs.message, c.repo_name)} |
+
+
+ %for tag in cs.tags:
+
+ ${h.link_to(tag,h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}
+
+ %endfor
+
+ ${h.urlify_commit(cs.message, c.repo_name)}
+ |
%endif
%endfor