% @title = "Recently Revised" %>
<% if pages = @book.pages.find(:all, :order => "updated_at DESC", :limit => 1000) %>
<% updated_on = pages.first.updated_at.to_date %>
<%= updated_on.strftime('%B %e, %Y') %>
<% for page in pages %>
<% if page.updated_at.to_date < updated_on %>
<% updated_on = page.updated_at.to_date %>
<%= updated_on.strftime('%B %e, %Y') %>
<% end %>
-
<%= link_to(page.title, page_url(:page_title => page)) %>
at <%= page.updated_at.to_s(:short) %>
<% end %>
<% end %>