source: ruby/trunk/rails/cancerehr/app/views/people/show.html.erb@ 60

Last change on this file since 60 was 60, checked in by KOBAYASHI, Shinji, 16 years ago

add people scaffold

File size: 237 bytes
Line 
1<p>
2 <b>Name:</b>
3 <%=h @person.name %>
4</p>
5
6<p>
7 <b>Birthday:</b>
8 <%=h @person.birthday %>
9</p>
10
11<p>
12 <b>Sex:</b>
13 <%=h @person.sex %>
14</p>
15
16
17<%= link_to 'Edit', edit_person_path(@person) %> |
18<%= link_to 'Back', people_path %>
Note: See TracBrowser for help on using the repository browser.