Include the search form on the search results page so you can more easily refine your search.
21 lines
522 B
Plaintext
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" %>
|