2012-08-09 06:34:29 +02:00
|
|
|
%h3.page_title
|
|
|
|
%span.cgray History for
|
2013-01-11 20:20:11 +01:00
|
|
|
= @wiki_pages.first.title
|
2012-07-25 21:08:47 +02:00
|
|
|
%br
|
2012-09-03 20:53:16 +02:00
|
|
|
%table
|
2012-02-19 20:52:05 +01:00
|
|
|
%thead
|
|
|
|
%tr
|
2013-01-11 20:20:11 +01:00
|
|
|
%th Page version
|
|
|
|
%th Last updated
|
|
|
|
%th Updated by
|
2012-02-19 20:52:05 +01:00
|
|
|
%tbody
|
2013-01-11 20:20:11 +01:00
|
|
|
- @wiki_pages.each_with_index do |wiki_page, i|
|
2012-02-19 20:52:05 +01:00
|
|
|
%tr
|
2012-02-19 20:56:18 +01:00
|
|
|
%td
|
2013-01-11 20:20:11 +01:00
|
|
|
%strong
|
|
|
|
= link_to project_wiki_path(@project, wiki_page, version_id: wiki_page.id) do
|
|
|
|
Version
|
|
|
|
= @wiki_pages.count - i
|
|
|
|
%td
|
|
|
|
= wiki_page.created_at.to_s(:short)
|
2012-03-26 11:11:02 +02:00
|
|
|
(#{time_ago_in_words(wiki_page.created_at)}
|
|
|
|
ago)
|
2013-01-11 20:20:11 +01:00
|
|
|
%td= link_to_member(@project, wiki_page.user)
|