13 lines
291 B
Plaintext
13 lines
291 B
Plaintext
%h1 Children
|
|
|
|
- @children.each do |child|
|
|
%ul
|
|
%li
|
|
= link_to child.name, child_path(child)
|
|
= link_to 'edit', edit_child_path(child)
|
|
%ul
|
|
- child.parents.each do |parent|
|
|
%li
|
|
= link_to parent.name, parent_path(parent)
|
|
= page_link(parent)
|