Now with extra protection - tests!
[railsex.git] / test / app / views / people / show.html.erb
blob5471d221b6066bdfe18528199fdb8516394a2f93
1 <p>
2   <b>Name:</b>
3   <%=h @person.name %>
4 </p>
6 <p>
7   <b>Address:</b>
8   <%=h @person.address %>
9 </p>
11 <p>
12   <b>Age:</b>
13   <%=h @person.age %>
14 </p>
17 <%= link_to 'Edit', edit_person_path(@person) %> |
18 <%= link_to 'Back', people_path %>