Welcome to mirror list, hosted at ThFree Co, Russian Federation.

search.html.haml « teams « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 601f2d57c8bec321948ce4e7d85b4dc913357800 (plain)
1
2
3
4
5
6
7
8
9
10
11
= render "team_head"

= form_tag search_team_path(@user_team), method: :get, class: 'form-inline' do |f|
  .padded
    = label_tag :search do
      %strong Looking for
    .input
      = search_field_tag :search, params[:search], placeholder: "issue 143", class: "input-xxlarge search-text-input", id: "dashboard_search"
      = submit_tag 'Search', class: "btn primary wide"
- if params[:search].present?
  = render 'search/result'