##// END OF EJS Templates
Fixing a small error in the repo settings screen...
Fixing a small error in the repo settings screen The 'Add another member' option didn't work in 1.2 beta, as the field was renamed from `perm_new_user_name` to `perm_new_member_name`

File last commit:

r1263:83714588 beta
r1441:b596a0e6 beta
Show More
repo_switcher_list.html
22 lines | 860 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">
<input type="text"
style="border:0"
value="quick filter..."
name="filter" size="15" id="q_filter_rs" />
</li>
implemented repo switcher list as dynamically loaded by xhr requestt....
r1158 %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"/>
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>
<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