annotate rhodecode/templates/repo_switcher_list.html @ 3665:690a955ba785 beta

use placeholders in qfilter, not the ugly JS logic
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 04 Apr 2013 13:18:24 +0200
parents fc79b3d5beb7
children 867a7dffc424
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1263
83714588272c added quick filter into repo switcher list
Marcin Kuzminski <marcin@python-works.com>
parents: 1171
diff changeset
1 ## -*- coding: utf-8 -*-
83714588272c added quick filter into repo switcher list
Marcin Kuzminski <marcin@python-works.com>
parents: 1171
diff changeset
2
83714588272c added quick filter into repo switcher list
Marcin Kuzminski <marcin@python-works.com>
parents: 1171
diff changeset
3 <li class="qfilter_rs">
3665
690a955ba785 use placeholders in qfilter, not the ugly JS logic
Marcin Kuzminski <marcin@python-works.com>
parents: 3542
diff changeset
4 <input type="text" style="border:0;width:100%" placeholder="${_('quick filter...')}" value="" name="filter" id="q_filter_rs" />
1263
83714588272c added quick filter into repo switcher list
Marcin Kuzminski <marcin@python-works.com>
parents: 1171
diff changeset
5 </li>
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1653
diff changeset
6
1158
f63cc1cbce27 implemented repo switcher list as dynamically loaded by xhr requestt.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
7 %for repo in c.repos_list:
3284
c36fee21cd83 quick repo list: public/private icon control should only control icons, not repo visibility
Mads Kiilerich <madski@unity3d.com>
parents: 2674
diff changeset
8 <li>
2674
a221706dab50 merged + fixed pull request #62: Implemented metatags and visualisation options.
Marcin Kuzminski <marcin@python-works.com>
parents: 2605
diff changeset
9 %if repo['dbrepo']['private'] and c.visual.show_private_icon:
1651
96ae22a4e963 Display error on ypjax fail
Marcin Kuzminski <marcin@python-works.com>
parents: 1263
diff changeset
10 <img src="${h.url('/images/icons/lock.png')}" alt="${_('Private repository')}" class="repo_switcher_type"/>
2674
a221706dab50 merged + fixed pull request #62: Implemented metatags and visualisation options.
Marcin Kuzminski <marcin@python-works.com>
parents: 2605
diff changeset
11 %elif not repo['dbrepo']['private'] and c.visual.show_public_icon:
1651
96ae22a4e963 Display error on ypjax fail
Marcin Kuzminski <marcin@python-works.com>
parents: 1263
diff changeset
12 <img src="${h.url('/images/icons/lock_open.png')}" alt="${_('Public repository')}" class="repo_switcher_type" />
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1653
diff changeset
13 %endif
3542
fc79b3d5beb7 small new UI fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 3284
diff changeset
14 ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name thin %s" % repo['dbrepo']['repo_type'])}
3284
c36fee21cd83 quick repo list: public/private icon control should only control icons, not repo visibility
Mads Kiilerich <madski@unity3d.com>
parents: 2674
diff changeset
15 </li>
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1653
diff changeset
16 %endfor