comparison rhodecode/templates/repo_switcher_list.html @ 1158:f63cc1cbce27 beta

implemented repo switcher list as dynamically loaded by xhr requestt. fixed sorting bug and missing groups on them
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 19 Mar 2011 01:07:53 +0100
parents
children 2ab211e0aecd
comparison
equal deleted inserted replaced
1157:41241617a7a3 1158:f63cc1cbce27
1 ## -*- coding: utf-8 -*-
2 %for repo in c.repos_list:
3
4 %if repo['dbrepo']['private']:
5 <li>
6 <img src="${h.url("/images/icons/lock.png")}" alt="${_('Private repository')}" class="repo_switcher_type"/>
7 ${h.link_to(repo['name'].name,h.url('summary_home',repo_name=repo['name']),class_="%s" % repo['dbrepo']['repo_type'])}
8 </li>
9 %else:
10 <li>
11 <img src="${h.url("/images/icons/lock_open.png")}" alt="${_('Public repository')}" class="repo_switcher_type" />
12 ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="%s" % repo['dbrepo']['repo_type'])}
13 </li>
14 %endif
15 %endfor