diff --git a/rhodecode/templates/changelog/changelog.html b/rhodecode/templates/changelog/changelog.html --- a/rhodecode/templates/changelog/changelog.html +++ b/rhodecode/templates/changelog/changelog.html @@ -46,7 +46,7 @@ ${c.repo_name} ${_('Changelog')} - ${c.r %for cnt,cs in enumerate(c.pagination):
-
${_('commit')} ${cs.revision}: ${cs.raw_id}@${cs.date}
+
${_('commit')} ${cs.revision}: ${h.short_id(cs.raw_id)}@${cs.date}
gravatar @@ -69,7 +69,7 @@ ${c.repo_name} ${_('Changelog')} - ${c.r %endif %if cs.parents: %for p_cs in reversed(cs.parents): -
${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.raw_id, +
${_('Parent')} ${p_cs.revision}: ${h.link_to(h.short_id(p_cs.raw_id), h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
%endfor