##// END OF EJS Templates
fixes to #85, some other small changes for summary page
marcink -
r799:6d37fe11 beta
parent child Browse files
Show More
@@ -9,7 +9,9 b''
9 9 </tr>
10 10 %for cnt,branch in enumerate(c.repo_branches.items()):
11 11 <tr class="parity${cnt%2}">
12 <td>${branch[1].date} - ${h.age(branch[1].date)}</td>
12 <td><span class="tooltip" tooltip_title="${h.age(branch[1].date)}">
13 ${branch[1].date}</span>
14 </td>
13 15 <td>
14 16 <span class="logtags">
15 17 <span class="branchtag">${h.link_to(branch[0],
@@ -92,8 +92,8 b''
92 92 </td>
93 93 ##LAST CHANGE
94 94 <td>
95 <span class="tooltip" tooltip_title="${h.age(repo['last_change'])}">
96 ${repo['last_change']}</span>
95 <span class="tooltip" tooltip_title="${repo['last_change']}">
96 ${h.age(repo['last_change'])}</span>
97 97 </td>
98 98 <td>
99 99 %if repo['rev']>=0:
@@ -2,8 +2,8 b''
2 2 % if c.repo_changesets:
3 3 <table>
4 4 <tr>
5 <th class="left">${_('date')}</th>
6 5 <th class="left">${_('commit message')}</th>
6 <th class="left">${_('age')}</th>
7 7 <th class="left">${_('author')}</th>
8 8 <th class="left">${_('revision')}</th>
9 9 <th class="left">${_('branch')}</th>
@@ -13,12 +13,14 b''
13 13 </tr>
14 14 %for cnt,cs in enumerate(c.repo_changesets):
15 15 <tr class="parity${cnt%2}">
16 <td>${cs.date} - ${h.age(cs.date)}</td>
17 16 <td>
18 17 ${h.link_to(h.truncate(cs.message,60),
19 18 h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id),
20 19 title=cs.message)}
21 </td>
20 </td>
21 <td><span class="tooltip" tooltip_title="${cs.date}">
22 ${h.age(cs.date)}</span>
23 </td>
22 24 <td title="${cs.author}">${h.person(cs.author)}</td>
23 25 <td>r${cs.revision}:${h.short_id(cs.raw_id)}</td>
24 26 <td>
@@ -9,7 +9,9 b''
9 9 </tr>
10 10 %for cnt,tag in enumerate(c.repo_tags.items()):
11 11 <tr class="parity${cnt%2}">
12 <td>${tag[1].date} - ${h.age(tag[1].date)}</td>
12 <td><span class="tooltip" tooltip_title="${h.age(tag[1].date)}">
13 ${tag[1].date}</span>
14 </td>
13 15 <td>
14 16 <span class="logtags">
15 17 <span class="tagtag">${h.link_to(tag[0],
General Comments 0
You need to be logged in to leave comments. Login now