comparison 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
comparison
equal deleted inserted replaced
4020:218ed589e44a 4021:b619842f173d
13 </li> 13 </li>
14 %if c.rhodecode_repo.closed_branches.values(): 14 %if c.rhodecode_repo.closed_branches.values():
15 <li> 15 <li>
16 ${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')} 16 ${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')}
17 <ul> 17 <ul>
18 <li><a>-</a></li>
19 %for cnt,branch in enumerate(c.rhodecode_repo.closed_branches.items()): 18 %for cnt,branch in enumerate(c.rhodecode_repo.closed_branches.items()):
20 <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> 19 <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>
21 %endfor 20 %endfor
22 </ul> 21 </ul>
23 </li> 22 </li>