comparison pylons_app/templates/shortlog/shortlog_data.html @ 494:b4d9680cd164 celery

some code fixes templates+helpers new rfc date without tz, added timerproxy formatting
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 22 Sep 2010 04:31:21 +0200
parents 558eb7c5028f
children b50e79b4257a
comparison
equal deleted inserted replaced
493:2256c78afe53 494:b4d9680cd164
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._ctx.date())}</td> 16 <td>${h.age(cs._ctx.date())} - ${h.rfc822date_notz(cs._ctx.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.raw_id}</td> 18 <td>r${cs.revision}:${cs.raw_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), 21 h.url('changeset_home',repo_name=c.repo_name,revision=cs._short),