Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
8517d67e850b
Commit
c5feabde
authored
May 13, 2013
by
Dmitriy Zaporozhets
Browse files
Add simple search to projects in public area
parent
8cd41daaac08
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/controllers/public/projects_controller.rb
View file @
8517d67e
...
...
@@ -7,6 +7,7 @@ class Public::ProjectsController < ApplicationController
def
index
@projects
=
Project
.
public_only
@projects
=
@projects
.
search
(
params
[
:search
])
if
params
[
:search
].
present?
@projects
=
@projects
.
includes
(
:namespace
).
order
(
"namespaces.path, projects.name ASC"
).
page
(
params
[
:page
]).
per
(
20
)
end
end
app/views/public/projects/index.html.haml
View file @
8517d67e
%h3
.page_title
Projects (
#{
@projects
.
total_count
}
)
%small
with read-only access
.row
.span6
%h3
.page_title
Projects (
#{
@projects
.
total_count
}
)
%small
with read-only access
.span6
.pull-right
=
form_tag
public_projects_path
,
method: :get
,
class:
'form-inline'
do
|
f
|
.search-holder
.input
=
search_field_tag
:search
,
params
[
:search
],
placeholder:
"gitlab-ci"
,
class:
"span3 search-text-input"
,
id:
"projects_search"
=
submit_tag
'Search'
,
class:
"btn btn-primary wide"
%hr
.public-projects
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment