adopt-a-hydrant/app/views/things/adopt.html.haml

11 lines
509 B
Plaintext
Raw Normal View History

%h2
= t("titles.adopt", :thing => t("defaults.thing").titleize)
2011-12-25 07:23:19 +00:00
= form_for :thing, :url => things_path, :method => :put, :html => {:id => "adoption_form", :class => "form-stacked"} do |f|
2011-05-08 08:29:21 +00:00
= 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.form-actions
= f.submit t("buttons.adopt"), :class => "btn primary"