diff --git a/pylons_app/templates/branches/branches.html b/pylons_app/templates/branches/branches.html new file mode 100644 --- /dev/null +++ b/pylons_app/templates/branches/branches.html @@ -0,0 +1,46 @@ +<%inherit file="/base/base.html"/> +<%! from pylons_app.lib import filters %> +<%def name="title()"> + ${_('Branches')} + +<%def name="breadcrumbs()"> + ${h.link_to(u'Home',h.url('/'))} + / + ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))} + / + ${_('branches')} + +<%def name="page_nav()"> +
+ +
+ + ${self.menu('branches')} + +<%def name="main()"> + + + + + %for cnt,branch in enumerate(c.repo_branches): + + + + + + + %endfor +
${branch._ctx.date()|n,filters.age} + + ${h.link_to(branch.branch,h.url('changeset_home',repo_name=c.repo_name,revision=branch._short))} + + + ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=branch._short))} + | + ${h.link_to(_('files'),h.url('files_home',repo_name=c.repo_name,revision=branch._short))} +
+ + \ No newline at end of file