@@ -9,7 +9,9 @@
</tr>
%for cnt,branch in enumerate(c.repo_branches.items()):
<tr class="parity${cnt%2}">
<td>${branch[1].date} - ${h.age(branch[1].date)}</td>
<td><span class="tooltip" tooltip_title="${h.age(branch[1].date)}">
${branch[1].date}</span>
</td>
<td>
<span class="logtags">
<span class="branchtag">${h.link_to(branch[0],
@@ -92,8 +92,8 @@
##LAST CHANGE
<span class="tooltip" tooltip_title="${h.age(repo['last_change'])}">
${repo['last_change']}</span>
<span class="tooltip" tooltip_title="${repo['last_change']}">
${h.age(repo['last_change'])}</span>
%if repo['rev']>=0:
@@ -2,8 +2,8 @@
% if c.repo_changesets:
<table>
<tr>
<th class="left">${_('date')}</th>
<th class="left">${_('commit message')}</th>
<th class="left">${_('age')}</th>
<th class="left">${_('author')}</th>
<th class="left">${_('revision')}</th>
<th class="left">${_('branch')}</th>
@@ -13,12 +13,14 @@
%for cnt,cs in enumerate(c.repo_changesets):
<td>${cs.date} - ${h.age(cs.date)}</td>
${h.link_to(h.truncate(cs.message,60),
h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id),
title=cs.message)}
<td><span class="tooltip" tooltip_title="${cs.date}">
${h.age(cs.date)}</span>
<td title="${cs.author}">${h.person(cs.author)}</td>
<td>r${cs.revision}:${h.short_id(cs.raw_id)}</td>
%for cnt,tag in enumerate(c.repo_tags.items()):
<td>${tag[1].date} - ${h.age(tag[1].date)}</td>
<td><span class="tooltip" tooltip_title="${h.age(tag[1].date)}">
${tag[1].date}</span>
<span class="tagtag">${h.link_to(tag[0],
Status change: