Sha256: 1c71f7db58f753add18f0ee10b1bce0e4c786f56d46eebc38fee1467d385306d

Contents?: true

Size: 709 Bytes

Versions: 7

Compression:

Stored size: 709 Bytes

Contents

<p>
  <b>Name:</b>
  <%=h @parent.name %>
</p>

<% @parent.some_other_models.each do |some_other_model| %>
  <div class="child">
    <p>
      <b>SomeOtherModel Name:</b>
      <%=h some_other_model.name %>
    </p>
  </div>
<% end %>

<% @parent.testies.each do |testy| %>
  <div class="child">
    <p>
      <b>Testy First name:</b>
      <%=h testy.first_name %>
    </p>
    <p>
      <b>Testy Last name:</b>
      <%=h testy.last_name %>
    </p>
    <p>
      <b>Testy Address:</b>
      <%=h testy.address %>
    </p>
    <p>
      <b>Testy Some flag:</b>
      <%=h testy.some_flag %>
    </p>
  </div>
<% end %>

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

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
repeated_auto_complete-0.1.3 test/view_mapper/expected_templates/show.html.erb
repeated_auto_complete-0.1.2 test/view_mapper/expected_templates/show.html.erb
repeated_auto_complete-0.1.1 test/view_mapper/expected_templates/show.html.erb
view_mapper-0.3.3 test/views/has_many/expected_templates/show.html.erb
view_mapper-0.3.2 test/views/has_many/expected_templates/show.html.erb
view_mapper-0.3.1 test/views/has_many/expected_templates/show.html.erb
repeated_auto_complete-0.1.0 test/view_mapper/expected_templates/show.html.erb