<% @title = t(".title") %> <% content_for :head do %> <%= javascript_include_tag "user" %> <% end %> <% content_for :heading do %>

<%= t(".heading") %>

<% end %> <%= form_tag(users_list_path, :method => :get, :data => { "turbo" => true, "turbo-frame" => "pagination", "turbo-action" => "advance" }) do %>
<%= select_tag :status, options_for_select(User.aasm.states.map(&:name).map { |state| [t(".states.#{state}"), state] }, params[:status]), :include_blank => t(".select_status"), :data => { :behavior => "category_dropdown" }, :class => "form-select" %>
<%= text_field_tag :ip, params[:ip], :placeholder => t(".ip_address"), :autocomplete => "on", :class => "form-control" %>
<%= submit_tag t(".search"), :name => nil, :class => "btn btn-primary" %>
<% end -%> <%= render :partial => "page" %>