annotate rhodecode/templates/repo_switcher_list.html @ 3140:105a0374faa1 beta

admin, email test: fix test for test_email recipients
author Mads Kiilerich <madski@unity3d.com>
date Wed, 02 Jan 2013 13:56:40 +0100
parents a221706dab50
children c36fee21cd83
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">
2605
0dc09191775b small html fix for quick repo switcher
Marcin Kuzminski <marcin@python-works.com>
parents: 2430
diff changeset
4 <input type="text" style="border:0;width:100%" value="${_('quick filter...')}" 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:
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1653
diff changeset
8
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:
1158
f63cc1cbce27 implemented repo switcher list as dynamically loaded by xhr requestt.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
10 <li>
1651
96ae22a4e963 Display error on ypjax fail
Marcin Kuzminski <marcin@python-works.com>
parents: 1263
diff changeset
11 <img src="${h.url('/images/icons/lock.png')}" alt="${_('Private repository')}" class="repo_switcher_type"/>
1263
83714588272c added quick filter into repo switcher list
Marcin Kuzminski <marcin@python-works.com>
parents: 1171
diff changeset
12 ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])}
1158
f63cc1cbce27 implemented repo switcher list as dynamically loaded by xhr requestt.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
13 </li>
2674
a221706dab50 merged + fixed pull request #62: Implemented metatags and visualisation options.
Marcin Kuzminski <marcin@python-works.com>
parents: 2605
diff changeset
14 %elif not repo['dbrepo']['private'] and c.visual.show_public_icon:
1158
f63cc1cbce27 implemented repo switcher list as dynamically loaded by xhr requestt.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
15 <li>
1651
96ae22a4e963 Display error on ypjax fail
Marcin Kuzminski <marcin@python-works.com>
parents: 1263
diff changeset
16 <img src="${h.url('/images/icons/lock_open.png')}" alt="${_('Public repository')}" class="repo_switcher_type" />
1263
83714588272c added quick filter into repo switcher list
Marcin Kuzminski <marcin@python-works.com>
parents: 1171
diff changeset
17 ${h.link_to(repo['name'],h.url('summary_home',repo_name=repo['name']),class_="repo_name %s" % repo['dbrepo']['repo_type'])}
1158
f63cc1cbce27 implemented repo switcher list as dynamically loaded by xhr requestt.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
18 </li>
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1653
diff changeset
19 %endif
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1653
diff changeset
20 %endfor