sms-pager/app/views/parents/show.html.haml
2015-10-04 20:27:03 -05:00

28 lines
789 B
Plaintext

%h2= @parent.name
%ul.sub-nav
%li= link_to 'back', :back
%li= link_to 'edit', edit_parent_path(@parent)
%p Email: #{mail_to(@parent.email, nil, encode: 'hex')}
%p Phone: #{number_to_phone @parent.phone} #{page_link(@parent)}
- unless @parent.children.empty?
%p Children:
%ul
- @parent.children.each do |child|
%li
= link_to child.name, child_path(child)
= link_to 'remove', del_parenthood_path(@parent, child), method: :delete
%p Add Child:
= form_tag add_parenthood_path(@parent) do
:ruby
select_options = options_from_collection_for_select(@more_children, :id, :name)
html_options = {
include_blank: true,
data: { id: 'children' }
}
= select_tag(:child, select_options, html_options)
= submit_tag 'Add Child to Parent'