##// END OF EJS Templates
fixes #298, ldap email addresses created by rhodecode automatically during first login didn't get converted to lower case, which lead to lookup failures and than wrong checks for uniqueness. Fixed that by putting a setter on db model column that will enforce converting to lowercase.
fixes #298, ldap email addresses created by rhodecode automatically during first login didn't get converted to lower case, which lead to lookup failures and than wrong checks for uniqueness. Fixed that by putting a setter on db model column that will enforce converting to lowercase.

File last commit:

r1653:b1e1dffd beta
r1757:2aa7f454 beta
Show More
repo_switcher_list.html
19 lines | 854 B | text/html | HtmlLexer
## -*- 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>
%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"/>
${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])}
</li>
%else:
<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