##// END OF EJS Templates
fixed issues with not unique emails when using ldap or container auth.
fixed issues with not unique emails when using ldap or container auth.

File last commit:

r1653:b1e1dffd beta
r1690:6944b124 beta
Show More
repo_switcher_list.html
19 lines | 854 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">
one generic qfilter function.
r1653 <input type="text" style="border:0" value="quick filter..." name="filter" size="15" id="q_filter_rs" />
added quick filter into repo switcher list
r1263 </li>
implemented repo switcher list as dynamically loaded by xhr requestt....
r1158 %for repo in c.repos_list:
%if repo['dbrepo']['private']:
<li>
Display error on ypjax fail
r1651 <img src="${h.url('/images/icons/lock.png')}" alt="${_('Private repository')}" class="repo_switcher_type"/>
added quick filter into repo switcher list
r1263 ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])}
implemented repo switcher list as dynamically loaded by xhr requestt....
r1158 </li>
%else:
<li>
Display error on ypjax fail
r1651 <img src="${h.url('/images/icons/lock_open.png')}" alt="${_('Public repository')}" class="repo_switcher_type" />
added quick filter into repo switcher list
r1263 ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])}
implemented repo switcher list as dynamically loaded by xhr requestt....
r1158 </li>
%endif
%endfor