sms-pager/app/views/parents/edit.html.haml

26 lines
465 B
Plaintext
Raw Normal View History

2015-10-03 19:16:46 -05:00
%h2 Edit #{@parent.name}
2015-10-04 20:27:03 -05:00
%ul.sub-nav
%li= link_to 'back', :back
2015-10-03 19:16:46 -05:00
- if @parent.errors.full_messages.any?
.errors
%h1 Uh oh!
- @parent.errors.full_messages.each do |e|
%p= e
= form_for @parent, as: :parent, url: update_parent_path do |f|
= f.label :first_name
= f.text_field :first_name
= f.label :last_name
= f.text_field :last_name
= f.label :phone
= f.phone_field :phone
= f.label :email
= f.email_field :email
= f.submit