diff --git a/pylons_app/templates/summary.html b/pylons_app/templates/summary.html --- a/pylons_app/templates/summary.html +++ b/pylons_app/templates/summary.html @@ -40,20 +40,20 @@
contact
${c.repo_info.contact}
last change
-
${c.repo_info.last_change|n,self.f.rfc822date}
+
${c.repo_info.last_change|n,self.f.time_ago}

Changes

%for cnt,cs in enumerate(c.repo_changesets): - + - + %endfor @@ -62,9 +62,11 @@
${cs.date}${cs._ctx.date()|n,self.f.time_ago} ${cs.author}${cs.message}${h.link_to(cs.message,h.url('rev/'+str(cs._ctx)))} - ${h.link_to(u'changset')} + ${h.link_to(_('changeset'),h.url('file/'+str(cs._ctx)))} | - ${h.link_to(u'files')} + ${h.link_to(_('files'),h.url('file/'+str(cs._ctx)))}
-

Tags

+

${_('Tags')}

-{tags} + %for tag in c.repo_tags: + ${tag} + %endfor @@ -72,7 +74,9 @@
...
- {branches%branchentry} + %for branch in c.repo_branches: + ${branch} + %endfor
...