diff --git a/pylons_app/templates/changelog/changelog.html b/pylons_app/templates/changelog/changelog.html --- a/pylons_app/templates/changelog/changelog.html +++ b/pylons_app/templates/changelog/changelog.html @@ -46,7 +46,7 @@ %for cnt,cs in enumerate(c.pagination):
-
${_('commit')} ${cs.revision}: ${cs.raw_id}@${cs.date}
+
${_('commit')} ${cs.revision}: ${cs.short_id}@${cs.date}
${cs.branch} %for tag in cs.tags: @@ -62,7 +62,7 @@
${h.link_to(h.wrap_paragraphs(cs.message), - h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))} + h.url('changeset_home',repo_name=c.repo_name,revision=cs.short_id))}
@@ -77,8 +77,8 @@
%endif %for p_cs in reversed(cs.parents): -
${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.raw_id, - h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)} +
${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.short_id, + h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.short_id),title=p_cs.message)}
%endfor