view rhodecode/templates/repo_switcher_list.html @ 3202:62ad5f2c474e beta

top menu: use 'Repositories' instead of down arrow - both to be consistent with other menu items and to give a stronger hint than two abstract symbols.
author Mads Kiilerich <madski@unity3d.com>
date Wed, 23 Jan 2013 20:26:33 +0100
parents a221706dab50
children c36fee21cd83
line wrap: on
line source

## -*- 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