comparison rhodecode/templates/shortlog/shortlog_data.html @ 635:fd63782c4426 beta

Fixed age, for new vcs implementation. Removed all obsolete date formatters Added simplegit middleware. fixed deps added scm type icon to main page
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 25 Oct 2010 03:19:01 +0200
parents 05528ad948c4
children ffd07396d315
comparison
equal deleted inserted replaced
634:0d18cf02278a 635:fd63782c4426
11 <th class="left">${_('links')}</th> 11 <th class="left">${_('links')}</th>
12 12
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>${h.age(cs.date)} - ${h.rfc822date_notz(cs.date)} </td> 16 <td>${h.age(cs.date)} - ${cs.date} </td>
17 <td title="${cs.author}">${h.person(cs.author)}</td> 17 <td title="${cs.author}">${h.person(cs.author)}</td>
18 <td>r${cs.revision}:${cs.short_id}</td> 18 <td>r${cs.revision}:${cs.short_id}</td>
19 <td> 19 <td>
20 ${h.link_to(h.truncate(cs.message,60), 20 ${h.link_to(h.truncate(cs.message,60),
21 h.url('changeset_home',repo_name=c.repo_name,revision=cs.short_id), 21 h.url('changeset_home',repo_name=c.repo_name,revision=cs.short_id),