summaryrefslogtreecommitdiff
path: root/app/views/search/_form.html.haml
blob: a4a5cec1314c760329eaac426f265cc28d8b977c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
= form_tag search_path, method: :get, class: 'js-search-form' do |f|
  = hidden_field_tag :snippets, params[:snippets]
  = hidden_field_tag :scope, params[:scope]

  .search-holder
    .search-field-holder
      = search_field_tag :search, params[:search], placeholder: "Search for projects, issues etc", class: "form-control search-text-input js-search-input", id: "dashboard_search", autofocus: true, spellcheck: false
      = icon("search", class: "search-icon")
      %button.search-clear.js-search-clear{ class: ("hidden" if !params[:search].present?), type: "button", tabindex: "-1" }
        = icon("times-circle")
        %span.sr-only
          Clear search
    - unless params[:snippets].eql? 'true'
      = render 'filter'
    = button_tag "Search", class: "btn btn-success btn-search"