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 @@ -47,43 +47,34 @@ from pylons_app.lib import filters -

Changes

+

${h.link_to(_('Changes'),h.url('changelog_home',repo_name=c.repo_name))}

%for cnt,cs in enumerate(c.repo_changesets): - + %endfor - - -
${cs._ctx.date()|n,filters.age} ${cs.author}${h.link_to(cs.message,h.url('rev/'+str(cs._ctx)))}${h.link_to(cs.message,h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))} - ${h.link_to(_('changeset'),h.url('file/'+str(cs._ctx)))} + ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=cs._short))} | - ${h.link_to(_('files'),h.url('file/'+str(cs._ctx)))} + ${h.link_to(_('files'),h.url('files_home',repo_name=c.repo_name,revision=cs._short))}
...
-

${_('Tags')}

+

${h.link_to(_('Tags'),h.url('tags_home',repo_name=c.repo_name))}

%for tag in c.repo_tags: ${tag} %endfor - - -
...
- +

${h.link_to(_('Branches'),h.url('branches_home',repo_name=c.repo_name))}

%for branch in c.repo_branches: ${branch} %endfor - - -
...
\ No newline at end of file