Name: <%=h @parent.name %>

<% @parent.some_other_models.each do |some_other_model| %>

SomeOtherModel Name: <%=h some_other_model.name %>

<% end %> <% @parent.testies.each do |testy| %>

Testy First name: <%=h testy.first_name %>

Testy Last name: <%=h testy.last_name %>

Testy Address: <%=h testy.address %>

Testy Some flag: <%=h testy.some_flag %>

<% end %> <%= link_to 'Edit', edit_parent_path(@parent) %> | <%= link_to 'Back', parents_path %>