Editing test_model

<% form_for(@test_model) do |f| %> <%= f.error_messages %>

<%= f.label :first_name %>
<%= text_field_with_auto_complete :test_model, :first_name, {}, { :method => :get } %>

<%= f.label :last_name %>
<%= text_field_with_auto_complete :test_model, :last_name, {}, { :method => :get } %>

<%= f.label :address %>
<%= f.text_field :address %>

<%= f.label :some_flag %>
<%= f.check_box :some_flag %>

<%= f.submit 'Update' %>

<% end %> <%= link_to 'Show', @test_model %> | <%= link_to 'Back', test_models_path %>