提交 c5feabde 编写于 作者: D Dmitriy Zaporozhets

Add simple search to projects in public area

上级 50d44202
......@@ -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
%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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册