# HG changeset patch # User Marcin Kuzminski # Date 2010-06-13 16:33:22 # Node ID ba0523f440d278a97e99915eb2aac87cd38bd5c3 # Parent ed7abf925696d8053665a4a084e166ec4cbc35a8 #2: proposed changes to shortlog added header table description 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))} |