2013-03-15 13:20:03 +01:00
|
|
|
= render 'wikis/nav'
|
2013-03-04 04:43:52 +01:00
|
|
|
%h3.page_title
|
|
|
|
All Pages
|
|
|
|
= render partial: 'main_links'
|
2013-03-15 13:20:03 +01:00
|
|
|
%br
|
|
|
|
%table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Title
|
2013-03-04 04:43:52 +01:00
|
|
|
%th Format
|
2013-03-15 13:20:03 +01:00
|
|
|
%th Last updated
|
|
|
|
%th Updated by
|
|
|
|
%tbody
|
|
|
|
- @wiki_pages.each do |wiki_page|
|
|
|
|
%tr
|
|
|
|
%td
|
2013-03-04 04:43:52 +01:00
|
|
|
%strong= link_to wiki_page.title.titleize, project_wiki_path(@project, wiki_page)
|
|
|
|
%td
|
|
|
|
%strong= wiki_page.format
|
2013-03-15 13:20:03 +01:00
|
|
|
%td
|
|
|
|
= wiki_page.created_at.to_s(:short) do
|
|
|
|
(#{time_ago_in_words(wiki_page.created_at)}
|
|
|
|
ago)
|
2013-03-04 04:43:52 +01:00
|
|
|
- commit = CommitDecorator.decorate(wiki_page.version)
|
|
|
|
%td= commit.author_link avatar: true, size: 24
|