box-o-sand/oldstuff/RubyFun/rails/gerbil/app/views/people/show.html.erb

21 lines
266 B
Plaintext

<p id="notice"><%= notice %></p>
<p>
<b>Name:</b>
<%= @person.name %>
</p>
<p>
<b>Age:</b>
<%= @person.age %>
</p>
<p>
<b>Zipcode:</b>
<%= @person.zipcode %>
</p>
<%= link_to 'Edit', edit_person_path(@person) %> |
<%= link_to 'Back', people_path %>