mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2026-04-02 08:21:57 -04:00
7 lines
475 B
Plaintext
7 lines
475 B
Plaintext
<%= form_tag(customers_path, method: "get", id: "customer-search-form") do %>
|
|
<%= text_field_tag :search, params[:search], class: "customer-name", placeholder: t(:label_search_customers), autocomplete: "off", data: { autocomplete_url: "/customers/autocomplete" } %>
|
|
<%= submit_tag t(:label_search) %>
|
|
<% end %>
|
|
<%= button_to t(:label_new_customer), new_customer_path, method: :get%>
|
|
<%= button_to(t(:label_sync), qbo_sync_path, method: :get) if User.current.admin?%>
|