diff rhodecode/templates/switch_to_list.html @ 4021:b619842f173d

removed obsolete separator in closed branches view
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 19 Jun 2013 00:23:51 +0200
parents 218ed589e44a
children ffd45b185016
line wrap: on
line diff
--- a/rhodecode/templates/switch_to_list.html	Tue Jun 04 13:26:41 2013 +0200
+++ b/rhodecode/templates/switch_to_list.html	Wed Jun 19 00:23:51 2013 +0200
@@ -15,7 +15,6 @@
 <li>
     ${h.link_to('%s (%s)' % (_('Closed Branches'),len(c.rhodecode_repo.closed_branches.values()),),h.url('branches_home',repo_name=c.repo_name),class_='branches childs')}
     <ul>
-        <li><a>-</a></li>
         %for cnt,branch in enumerate(c.rhodecode_repo.closed_branches.items()):
             <li><div><pre>${h.link_to('%s - %s' % (branch[0],h.short_id(branch[1])),h.url('files_home',repo_name=c.repo_name,revision=(branch[0] if '/' not in branch[0] else branch[1]), at=branch[0]))}</pre></div></li>
         %endfor