diff --git a/pylons_app/templates/shortlog/shortlog_data.html b/pylons_app/templates/shortlog/shortlog_data.html --- a/pylons_app/templates/shortlog/shortlog_data.html +++ b/pylons_app/templates/shortlog/shortlog_data.html @@ -2,7 +2,17 @@ <%! from pylons_app.lib import filters %> - +
+ + + + + + + + + + %for cnt,cs in enumerate(c.repo_changesets): @@ -16,11 +26,15 @@ from pylons_app.lib import filters +
${_('date')}${_('author')}${_('revision')}${_('commit message')}${_('branch')}${_('tags')}${_('links')}
${cs._ctx.date()|n,filters.age} ${cs.branch} - %for tag in cs.tags: - ${tag} - %endfor + + %for tag in cs.tags: + ${tag} + %endfor + + ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))} |