Files
grecia/app/views/admin/budget_investments/_search_form.html.erb
2018-01-25 08:16:32 -04:00

13 lines
534 B
Plaintext

<div class="small-12 medium-6">
<%= form_for(Budget::Investment.new, url: admin_budget_budget_investments_path(budget: @budget),
method: :get,
remote: true) do |f| %>
<div class="input-group">
<%= text_field_tag :project_title, "", placeholder: t("#{i18n_namespace}.placeholder") %>
<div class="input-group-button">
<%= f.submit t("#{i18n_namespace}.buttons.search"), class: "button" %>
</div>
</div>
<% end %>
</div>