${_('name')} |
${_('date')} |
${_('author')} |
${_('revision')} |
%for cnt,branch in enumerate(c.repo_branches.items()):
${h.link_to(branch[0],
h.url('files_home',repo_name=c.repo_name,revision=branch[1].raw_id))}
|
${branch[1].date} |
${h.person(branch[1].author)} |
|
%endfor
% if hasattr(c,'repo_closed_branches') and c.repo_closed_branches:
%for cnt,branch in enumerate(c.repo_closed_branches.items()):
${h.link_to(branch[0]+' [closed]',
h.url('changeset_home',repo_name=c.repo_name,revision=branch[1].raw_id))}
|
${branch[1].date} |
${h.person(branch[1].author)} |
|
%endfor
%endif