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

_search_form.html.haml « issuable « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afad48499b7d7dc85a81c0c2b033b6cca9f27470 (plain)
1
2
3
4
5
6
7
8
= form_tag(path, method: :get, id: "issue_search_form", class: 'issue-search-form') do
  = search_field_tag :issue_search, params[:issue_search], { placeholder: 'Filter by name ...', class: 'form-control issue_search search-text-input input-short', spellcheck: false }
  = hidden_field_tag :state, params['state']
  = hidden_field_tag :scope, params['scope']
  = hidden_field_tag :assignee_id, params['assignee_id']
  = hidden_field_tag :author_id, params['author_id']
  = hidden_field_tag :milestone_id, params['milestone_id']
  = hidden_field_tag :label_id, params['label_id']