diff --git a/rhodecode/templates/branches/branches_data.html b/rhodecode/templates/branches/branches_data.html --- a/rhodecode/templates/branches/branches_data.html +++ b/rhodecode/templates/branches/branches_data.html @@ -9,7 +9,9 @@ %for cnt,branch in enumerate(c.repo_branches.items()): - ${branch[1].date} - ${h.age(branch[1].date)} + + ${branch[1].date} + ${h.link_to(branch[0], diff --git a/rhodecode/templates/index.html b/rhodecode/templates/index.html --- a/rhodecode/templates/index.html +++ b/rhodecode/templates/index.html @@ -92,8 +92,8 @@ ##LAST CHANGE - - ${repo['last_change']} + + ${h.age(repo['last_change'])} %if repo['rev']>=0: diff --git a/rhodecode/templates/shortlog/shortlog_data.html b/rhodecode/templates/shortlog/shortlog_data.html --- a/rhodecode/templates/shortlog/shortlog_data.html +++ b/rhodecode/templates/shortlog/shortlog_data.html @@ -2,8 +2,8 @@ % if c.repo_changesets: - + @@ -13,12 +13,14 @@ %for cnt,cs in enumerate(c.repo_changesets): - + + %for cnt,tag in enumerate(c.repo_tags.items()): - +
${_('date')} ${_('commit message')}${_('age')} ${_('author')} ${_('revision')} ${_('branch')}
${cs.date} - ${h.age(cs.date)} ${h.link_to(h.truncate(cs.message,60), h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id), title=cs.message)} - + ${h.age(cs.date)} + ${h.person(cs.author)} r${cs.revision}:${h.short_id(cs.raw_id)} diff --git a/rhodecode/templates/tags/tags_data.html b/rhodecode/templates/tags/tags_data.html --- a/rhodecode/templates/tags/tags_data.html +++ b/rhodecode/templates/tags/tags_data.html @@ -9,7 +9,9 @@
${tag[1].date} - ${h.age(tag[1].date)} + ${tag[1].date} + ${h.link_to(tag[0],