diff --git a/rhodecode/templates/branches/branches_data.html b/rhodecode/templates/branches/branches_data.html --- a/rhodecode/templates/branches/branches_data.html +++ b/rhodecode/templates/branches/branches_data.html @@ -1,53 +1,52 @@ -% if c.repo_branches: - +%if c.repo_branches: +
+
+ + - - + %for cnt,branch in enumerate(c.repo_branches.items()): - + h.url('files_home',repo_name=c.repo_name,revision=branch[1].raw_id))} + + + - - - + + %endfor % if hasattr(c,'repo_closed_branches') and c.repo_closed_branches: %for cnt,branch in enumerate(c.repo_closed_branches.items()): - + + + - - - + %endfor - %endif + %endif
${_('name')} ${_('date')}${_('name')} ${_('author')} ${_('revision')}${_('links')}
${branch[1].date} - ${h.link_to(branch[0], - h.url('changeset_home',repo_name=c.repo_name,revision=branch[1].raw_id))} - - ${branch[1].date} ${h.person(branch[1].author)}r${branch[1].revision}:${h.short_id(branch[1].raw_id)} - ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=branch[1].raw_id))} - | - ${h.link_to(_('files'),h.url('files_home',repo_name=c.repo_name,revision=branch[1].raw_id))} -
+
+
r${branch[1].revision}:${h.short_id(branch[1].raw_id)}
+
+
${branch[1].date} - ${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)}r${branch[1].revision}:${h.short_id(branch[1].raw_id)} - ${h.link_to(_('changeset'),h.url('changeset_home',repo_name=c.repo_name,revision=branch[1].raw_id))} - | - ${h.link_to(_('files'),h.url('files_home',repo_name=c.repo_name,revision=branch[1].raw_id))} + +
+
r${branch[1].revision}:${h.short_id(branch[1].raw_id)}
+
+ %else: ${_('There are no branches yet')} -%endif \ No newline at end of file +%endif