31 lines
842 B
Plaintext
31 lines
842 B
Plaintext
<div id="c-wiki-pages">
|
|
<div id="a-index">
|
|
<%= render "sidebar" %>
|
|
|
|
<section id="content">
|
|
<h1>Wiki Pages</h1>
|
|
|
|
<table class="striped" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Last edited</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @wiki_pages.each do |wiki_page| %>
|
|
<tr>
|
|
<td class="tag-category-<%= wiki_page.category_name %>"><%= link_to wiki_page.pretty_title, wiki_page_path(wiki_page, :nordirect => 1) %></td>
|
|
<td><%= wiki_page.updated_at.strftime("%m/%d/%Y %I:%M") %> by <%= h wiki_page.creator.name %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<%= numbered_paginator(@wiki_pages) %>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render "secondary_links" %>
|