gitlabhq/app/views/wikis/history.html.haml
Riyad Preukschas b55ed840e6 Update wiki pages
* Properly name columns in Pages and History views
* Link to Authors
* Make views more consistent
2013-01-11 20:20:11 +01:00

24 lines
596 B
Plaintext

%h3.page_title
%span.cgray History for
= @wiki_pages.first.title
%br
%table
%thead
%tr
%th Page version
%th Last updated
%th Updated by
%tbody
- @wiki_pages.each_with_index do |wiki_page, i|
%tr
%td
%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)
(#{time_ago_in_words(wiki_page.created_at)}
ago)
%td= link_to_member(@project, wiki_page.user)