<%= form_tag(search_phone_records_path, :method => "get") do %>
<div>
<%= label_tag(:city, "City:") %>
<%= select_tag(:city_id, options_from_collection_for_select(City.all, :id, :name)) %>
</div>
<div>
<label>Search By:</label>
<%= radio_button_tag(:search_by, "name") %>
<%= label_tag(:search_by_name, "Name") %>
<%= radio_button_tag(:search_by, "address") %>
<%= label_tag(:search_by_address, "Address") %>
<%= radio_button_tag(:search_by, "phone") %>
<%= label_tag(:search_by_phone, "PhoneNo") %>
</div>
<div>
<label>Search:</label>
<%= text_field_tag(:search, params[:search]) %>
</div>
<div>
<%= label_tag(:match, "Match:") %>
<%= select_tag(:match, options_for_select([['Starts with', 'starts_with']])) %>
</div>
<div>
<%= submit_tag("Search") %>
</div>
<% end %>
Bookmarks