11 lines
484 B
Plaintext
11 lines
484 B
Plaintext
%h2
|
|
= t("titles.adopt", :thing => t("defaults.thing").titleize)
|
|
= form_for :thing, :url => things_path, :method => :put, :html => {:id => "adoption_form"} do |f|
|
|
= f.hidden_field "id"
|
|
= f.hidden_field "user_id", :value => current_user.id
|
|
%fieldset.control-group
|
|
= f.label "name", t("labels.name_thing", :thing => t("defaults.thing")), :id => "thing_name_label"
|
|
= f.text_field "name"
|
|
%fieldset.control-group
|
|
= f.submit t("buttons.adopt"), :class => "btn primary"
|