##// END OF EJS Templates
added check for python <2.5 in setup file
added check for python <2.5 in setup file

File last commit:

r1158:f63cc1cb beta
r1163:a1fba57f beta
Show More
repo_switcher_list.html
14 lines | 699 B | text/html | HtmlLexer
## -*- 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"/>
${h.link_to(repo['name'].name,h.url('summary_home',repo_name=repo['name']),class_="%s" % repo['dbrepo']['repo_type'])}
</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