13 lines
492 B
Plaintext
13 lines
492 B
Plaintext
<%= form_tag(search_officers_admin_poll_path(@poll), method: :get, remote: true) do |f| %>
|
|
<div class="input-group">
|
|
<%= text_field_tag :search,
|
|
@search,
|
|
placeholder: t("admin.shared.poll_officers_search.placeholder"), id: "search-officers" %>
|
|
<div class="input-group-button">
|
|
<%= submit_tag t("admin.shared.poll_officers_search.button"), class: "button" %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
|
|
<div id="search-officers-results"></div>
|