##// 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 </tr>
9 </tr>
10 %for cnt,branch in enumerate(c.repo_branches.items()):
10 %for cnt,branch in enumerate(c.repo_branches.items()):
11 <tr class="parity${cnt%2}">
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 <td>
15 <td>
14 <span class="logtags">
16 <span class="logtags">
15 <span class="branchtag">${h.link_to(branch[0],
17 <span class="branchtag">${h.link_to(branch[0],
@@ -92,8 +92,8 b''
92 </td>
92 </td>
93 ##LAST CHANGE
93 ##LAST CHANGE
94 <td>
94 <td>
95 <span class="tooltip" tooltip_title="${h.age(repo['last_change'])}">
95 <span class="tooltip" tooltip_title="${repo['last_change']}">
96 ${repo['last_change']}</span>
96 ${h.age(repo['last_change'])}</span>
97 </td>
97 </td>
98 <td>
98 <td>
99 %if repo['rev']>=0:
99 %if repo['rev']>=0:
@@ -2,8 +2,8 b''
2 % if c.repo_changesets:
2 % if c.repo_changesets:
3 <table>
3 <table>
4 <tr>
4 <tr>
5 <th class="left">${_('date')}</th>
6 <th class="left">${_('commit message')}</th>
5 <th class="left">${_('commit message')}</th>
6 <th class="left">${_('age')}</th>
7 <th class="left">${_('author')}</th>
7 <th class="left">${_('author')}</th>
8 <th class="left">${_('revision')}</th>
8 <th class="left">${_('revision')}</th>
9 <th class="left">${_('branch')}</th>
9 <th class="left">${_('branch')}</th>
@@ -13,12 +13,14 b''
13 </tr>
13 </tr>
14 %for cnt,cs in enumerate(c.repo_changesets):
14 %for cnt,cs in enumerate(c.repo_changesets):
15 <tr class="parity${cnt%2}">
15 <tr class="parity${cnt%2}">
16 <td>${cs.date} - ${h.age(cs.date)}</td>
17 <td>
16 <td>
18 ${h.link_to(h.truncate(cs.message,60),
17 ${h.link_to(h.truncate(cs.message,60),
19 h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id),
18 h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id),
20 title=cs.message)}
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 <td title="${cs.author}">${h.person(cs.author)}</td>
24 <td title="${cs.author}">${h.person(cs.author)}</td>
23 <td>r${cs.revision}:${h.short_id(cs.raw_id)}</td>
25 <td>r${cs.revision}:${h.short_id(cs.raw_id)}</td>
24 <td>
26 <td>
@@ -9,7 +9,9 b''
9 </tr>
9 </tr>
10 %for cnt,tag in enumerate(c.repo_tags.items()):
10 %for cnt,tag in enumerate(c.repo_tags.items()):
11 <tr class="parity${cnt%2}">
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 <td>
15 <td>
14 <span class="logtags">
16 <span class="logtags">
15 <span class="tagtag">${h.link_to(tag[0],
17 <span class="tagtag">${h.link_to(tag[0],
General Comments 0
You need to be logged in to leave comments. Login now