Sha256: 86b9c60cf3534c457ea687e2b2045ef308bf443b5178c8ba811f15e309e18972

Contents?: true

Size: 844 Bytes

Versions: 1

Compression:

Stored size: 844 Bytes

Contents

<%-
  state_options = options_for_select(options_for_available_states, params[:state_id])
  city_options  = options_for_select(options_for_available_cities(params[:state_id]), params[:city_id])
-%>
<section>
  <header>
    <h1><%= t('.title') %></h1>
    <%= form_tag(root_path, method: :get) do %>
      <label for="state_id"><%= t('.state') %></label>
      <%= select_tag :state_id, state_options, prompt: t('.select_state'), include_blank: true, data: { 'filter-select' => '{"target": "#city_id", "filterParam":"state_id", "filter": "city", "data": {  "open_jobs": "1"} }' } %>

      <label for="city_id"><%= t('.city') %></label>
      <%= select_tag :city_id, city_options, prompt: t('.select_city') %>
      <button class="expand secondary"> <%= icon('page-search') %> <%= t('.submit') %> </button>
    <% end %>
  </header>
</section>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
recruiter-0.0.7 app/views/recruiter/_filters.html.erb