<%= ts("Participants in %{collection}", :collection => @collection.title) %>
<% if @people.empty? %>
<%= ts("No matching people found.") %>
<% else %>
<%= will_paginate(@people) %>
Listing People
<% for person in @people %>
<% unless person.nil? %>
<%= render 'people/author_blurb', :author => person %>
<% end %>
<% end %>
<%= will_paginate(@people) %>
<% end %>