otwarchive-symphonyarchive/app/views/people/search.html.erb

20 lines
547 B
Text
Raw Normal View History

2026-03-11 22:22:11 +00:00
<!--SEARCHBROWSE-->
<h2 class="heading"><%= ts("People Search") %></h2>
<%= render 'shared/search_nav' %>
<%= render :partial => 'people/search_form' %>
<% if @people %>
<p><strong><%= search_results_found(@people) %></strong></p>
<h3 class="landmark heading">People List</h3>
<ol class="pseud index group">
<% for person in @people %>
<% unless person.nil? %>
<%= render :partial => 'people/author_blurb', :locals => {:author => person} %>
<% end %>
<% end %>
</ol>
<%= will_paginate @people %>
<% end %>