Sha256: 73bd3fceb620a9d158b98cceeacca423cc33894f0926c68a7ac9fa644bb90698
Contents?: true
Size: 818 Bytes
Versions: 15
Compression:
Stored size: 818 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(jobs_path, method: :get) do %> <label for="state_id"><%= t('.state') %></label> <%= select_tag :state_id, state_options, prompt: t('.select_state'), data: { 'filter-select' => '{"target": "#city_id", "filterParam":"state_id", "filter": "city", "data": { "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
15 entries across 15 versions & 1 rubygems