##// END OF EJS Templates
implements #636, lazy loading of history and authors to speed up page responsiveness....
implements #636, lazy loading of history and authors to speed up page responsiveness. - loading full history is not always needed, and it's very heavy operation. Now this is lazy loaded when clicking on button

File last commit:

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