view rhodecode/templates/repo_switcher_list.html @ 4064:afe7c5e63aaf

UX: require confirmation of revoking permissions on repos/user groups/repo groups. We don't want people to click on this accidentally.
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 29 Jun 2013 21:36:01 +0200
parents 867a7dffc424
children
line wrap: on
line source

## -*- coding: utf-8 -*-

<li class="qfilter_rs">
    <input type="text" style="border:0;width:100%" placeholder="${_('quick filter...')}" value="" name="filter" id="q_filter_rs" />
</li>

%for repo in c.repos_list:
    <li>
      %if repo['dbrepo']['private'] and c.visual.show_private_icon:
             <img src="${h.url('/images/icons/private_repo.png')}" alt="${_('Private repository')}" class="repo_switcher_type"/>
      %elif not repo['dbrepo']['private'] and c.visual.show_public_icon:
             <img src="${h.url('/images/icons/public_repo.png')}" alt="${_('Public repository')}" class="repo_switcher_type" />
      %endif
      ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name thin %s" % repo['dbrepo']['repo_type'])}
    </li>
%endfor