box-o-sand/cookbook/015/hodgepodge/app/views/people/list.html.erb
2011-08-09 21:12:02 -04:00

7 lines
156 B
Plaintext

<!-- list.rhtml -->
<ul>
<% Person.find(:all).each do |person| %>
<li>Name: <%= person.name %>, Email: <%= person.email %></li>
<% end %>
</ul>