Files
danbooru/app/views/wiki_pages/_recent_changes.html.erb
2013-02-04 18:34:25 -08:00

9 lines
287 B
Plaintext

<section>
<h1>Recent Changes (<%= link_to "all", wiki_pages_path(:sort => "time") %>)</h1>
<ul>
<% WikiPage.recent.each do |page| %>
<li class="category-<%= page.category_name %>"><%= link_to page.pretty_title, wiki_page_path(page) %></li>
<% end %>
</ul>
</section>