diff --git a/pylons_app/templates/branches/branches_data.html b/pylons_app/templates/branches/branches_data.html --- a/pylons_app/templates/branches/branches_data.html +++ b/pylons_app/templates/branches/branches_data.html @@ -9,17 +9,17 @@ %for cnt,branch in enumerate(c.repo_branches.items()): ${h.age(branch[1]._ctx.date())} - r${branch[1].revision}:${branch[1].raw_id} + r${branch[1].revision}:${branch[1].short_id} ${h.link_to(branch[0], - h.url('changeset_home',repo_name=c.repo_name,revision=branch[1].raw_id))} + h.url('changeset_home',repo_name=c.repo_name,revision=branch[1].short_id))} - ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=branch[1].raw_id))} + ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=branch[1].short_id))} | - ${h.link_to(_('files'),h.url('files_home',repo_name=c.repo_name,revision=branch[1].raw_id))} + ${h.link_to(_('files'),h.url('files_home',repo_name=c.repo_name,revision=branch[1].short_id))} %endfor