repo_switcher_list.html
20 lines
| 944 B
| text/html
|
HtmlLexer
r1263 | ## -*- coding: utf-8 -*- | |||
<li class="qfilter_rs"> | ||||
r2605 | <input type="text" style="border:0;width:100%" value="${_('quick filter...')}" name="filter" id="q_filter_rs" /> | |||
r1263 | </li> | |||
r1888 | ||||
r1158 | %for repo in c.repos_list: | |||
r1888 | ||||
r2674 | %if repo['dbrepo']['private'] and c.visual.show_private_icon: | |||
r1158 | <li> | |||
r1651 | <img src="${h.url('/images/icons/lock.png')}" alt="${_('Private repository')}" class="repo_switcher_type"/> | |||
r1263 | ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])} | |||
r1158 | </li> | |||
r2674 | %elif not repo['dbrepo']['private'] and c.visual.show_public_icon: | |||
r1158 | <li> | |||
r1651 | <img src="${h.url('/images/icons/lock_open.png')}" alt="${_('Public repository')}" class="repo_switcher_type" /> | |||
r1263 | ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])} | |||
r1158 | </li> | |||
r1888 | %endif | |||
%endfor | ||||