summaryrefslogtreecommitdiff
path: root/app/views/layouts/_search.html.haml
blob: 2470314f6fc15350d84dd1e732e27c302d326bcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.search
  = form_tag search_path, method: :get, class: 'navbar-form pull-left' do |f|
    = text_field_tag "search", nil, placeholder: "Search", class: "search-input"
    = hidden_field_tag :group_id, @group.try(:id)
    = hidden_field_tag :project_id, @project.try(:id)
    - if @ref
      - @branch_ref = @ref
    - else
      - @branch_ref = @project.try(:default_branch)
      - if @branch_ref.blank?
        - @branch_ref = 'master'
    = hidden_field_tag :branch_ref, @branch_ref
    - if ENV['RAILS_ENV'] == 'test'
      = submit_tag 'Go'
    .search-autocomplete-json.hide{:'data-autocomplete-opts' => search_autocomplete_source }