box-o-sand/cookbook/015/hodgepodge/app/views/people/list.html.erb

7 lines
156 B
Plaintext
Raw Normal View History

2011-08-10 01:12:02 +00:00
<!-- list.rhtml -->
<ul>
<% Person.find(:all).each do |person| %>
<li>Name: <%= person.name %>, Email: <%= person.email %></li>
<% end %>
</ul>