adopt-a-hydrant/app/views/users/_reminder.html.haml

6 lines
359 B
Plaintext

= form_for :reminder, :url => reminders_path, :html => {:id => "reminder_form", :class => "form-stacked", :method => "post"} do |f|
= f.hidden_field "from_user_id", :value => current_user.id
= f.hidden_field "to_user_id", :value => @thing.user.id
= f.hidden_field "thing_id", :value => @thing.id
= f.submit t("buttons.send_reminder"), :class => "btn"