##// END OF EJS Templates
Make the private icon of repo more distinguished from...
Make the private icon of repo more distinguished from the public one. Makes it easy to see which repositories are private.

File last commit:

r4003:867a7dff default
r4003:867a7dff default
Show More
repo_switcher_list.html
16 lines | 789 B | text/html | HtmlLexer
/ rhodecode / templates / repo_switcher_list.html
added quick filter into repo switcher list
r1263 ## -*- coding: utf-8 -*-
<li class="qfilter_rs">
use placeholders in qfilter, not the ugly JS logic
r3665 <input type="text" style="border:0;width:100%" placeholder="${_('quick filter...')}" value="" name="filter" id="q_filter_rs" />
added quick filter into repo switcher list
r1263 </li>
White-space cleanup
r1888
implemented repo switcher list as dynamically loaded by xhr requestt....
r1158 %for repo in c.repos_list:
Mads Kiilerich
quick repo list: public/private icon control should only control icons, not repo visibility
r3284 <li>
merged + fixed pull request #62: Implemented metatags and visualisation options....
r2674 %if repo['dbrepo']['private'] and c.visual.show_private_icon:
Make the private icon of repo more distinguished from...
r4003 <img src="${h.url('/images/icons/private_repo.png')}" alt="${_('Private repository')}" class="repo_switcher_type"/>
merged + fixed pull request #62: Implemented metatags and visualisation options....
r2674 %elif not repo['dbrepo']['private'] and c.visual.show_public_icon:
Make the private icon of repo more distinguished from...
r4003 <img src="${h.url('/images/icons/public_repo.png')}" alt="${_('Public repository')}" class="repo_switcher_type" />
White-space cleanup
r1888 %endif
small new UI fixes
r3542 ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name thin %s" % repo['dbrepo']['repo_type'])}
Mads Kiilerich
quick repo list: public/private icon control should only control icons, not repo visibility
r3284 </li>
White-space cleanup
r1888 %endfor