##// END OF EJS Templates
applied patch from issue #138
applied patch from issue #138

File last commit:

r1171:2ab211e0 beta
r1185:597bc707 beta
Show More
repo_switcher_list.html
14 lines | 694 B | text/html | HtmlLexer
/ rhodecode / templates / repo_switcher_list.html
implemented repo switcher list as dynamically loaded by xhr requestt....
r1158 ## -*- coding: utf-8 -*-
%for repo in c.repos_list:
%if repo['dbrepo']['private']:
<li>
<img src="${h.url("/images/icons/lock.png")}" alt="${_('Private repository')}" class="repo_switcher_type"/>
changes for #56
r1171 ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="%s" % repo['dbrepo']['repo_type'])}
implemented repo switcher list as dynamically loaded by xhr requestt....
r1158 </li>
%else:
<li>
<img src="${h.url("/images/icons/lock_open.png")}" alt="${_('Public repository')}" class="repo_switcher_type" />
${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="%s" % repo['dbrepo']['repo_type'])}
</li>
%endif
%endfor