_form.html.erb 291 Bytes
Newer Older
April Guian's avatar
April Guian committed
1 2 3 4 5 6 7 8 9
<%= simple_form_for([:admin, @housemate]) do |f| %>
  <%= f.input :first_name %>
  <%= f.input :last_name %>
  <%= f.input :screen_name %>
  <%= f.input :address %>
  <%= f.input :talent %>
  <%= f.input :rate, as: :select, collection: ['QT', 'Pabebe', 'Meh'] %>
  <%= f.submit %>
<% end %>