diff --git a/pylons_app/templates/summary.html b/pylons_app/templates/summary.html --- a/pylons_app/templates/summary.html +++ b/pylons_app/templates/summary.html @@ -53,7 +53,16 @@ from pylons_app.lib import filters ${cs._ctx.date()|n,filters.age} ${cs.author} - ${h.link_to(cs.message,h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))} + + + ${h.link_to(cs.message,h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))} + + ${cs.branch} + %for tag in cs.tags: + ${tag} + %endfor + + ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))} |