diff --git a/kallithea/templates/changelog/changelog_table.html b/kallithea/templates/changelog/changelog_table.html
--- a/kallithea/templates/changelog/changelog_table.html
+++ b/kallithea/templates/changelog/changelog_table.html
@@ -78,6 +78,16 @@
%endif
+ %for book in cs.bookmarks:
+
+ ${h.link_to(book,h.url('changeset_home',repo_name=repo_name,revision=cs.raw_id))}
+
+ %endfor
+ %for tag in cs.tags:
+
+ ${h.link_to(tag,h.url('changeset_home',repo_name=repo_name,revision=cs.raw_id))}
+
+ %endfor
%if cs.bumped:
Bumped
@@ -103,16 +113,6 @@
${cs.phase}
%endif
- %for book in cs.bookmarks:
-
- ${h.link_to(book,h.url('changeset_home',repo_name=repo_name,revision=cs.raw_id))}
-
- %endfor
- %for tag in cs.tags:
-
- ${h.link_to(tag,h.url('changeset_home',repo_name=repo_name,revision=cs.raw_id))}
-
- %endfor
%if show_branch and cs.branch:
${h.link_to(cs.branch,h.url('changelog_home',repo_name=repo_name,branch=cs.branch))}