Files
danbooru/app/views/wiki_pages/index.html.erb
evazion 2c92794eba wiki: include search form on search results page.
Include the search form on the search results page so you can more
easily refine your search.
2020-12-17 23:57:13 -06:00

21 lines
522 B
Plaintext

<%= render "sidebar" %>
<% content_for(:content) do %>
<h1>Wiki</h1>
<%= render "search" %>
<%= table_for @wiki_pages, width: "100%" do |t| %>
<% t.column "Title" do |wiki_page| %>
<span class="<%= tag_class(wiki_page.tag) %>"><%= link_to_wiki wiki_page.title %></span>
<% end %>
<% t.column "Last edited" do |wiki_page| %>
<%= time_ago_in_words_tagged(wiki_page.updated_at) %>
<% end %>
<% end %>
<%= numbered_paginator(@wiki_pages) %>
<% end %>
<%= render "secondary_links" %>