%= form_for(Budget::Investment.new, url: url, as: :budget_investment, method: :get) do |f| %>
<%= text_field_tag :search, "" %>
<%= select_tag :heading_id,
options_for_select(budget_heading_select_options(@budget),
params[:heading_id]),
include_blank: true
%>
<%= check_box_tag :unfeasible, "1", params[:unfeasible].present? %>
<%= t("admin.budget_investments.search_unfeasible") %>
<%= f.submit t("shared.search"), class: "button" %>
<% end %>