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

  .d-lg-flex.align-items-end
    .search-field-holder.form-group.mr-lg-1.mb-lg-0
      %label{ for: "dashboard_search" }
        = _("What are you searching for?")
      .position-relative
        = 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'
    .d-flex-center.flex-column.flex-lg-row
      = button_tag _("Search"), class: "btn btn-success btn-search form-control mt-lg-0 ml-lg-1 align-self-end"
      = render_if_exists 'search/form_elasticsearch'