gitlab-org--gitlab-foss/app/views/projects/wikis/history.html.haml

35 lines
942 B
Plaintext
Raw Normal View History

- page_title "History", @page.title.capitalize, "Wiki"
= render "header_title"
= render 'nav'
.gray-content-block
%h3.page-title
%span.light History for
= link_to @page.title, namespace_project_wiki_path(@project.namespace, @project, @page)
2013-08-16 13:59:26 +00:00
%table.table
2012-02-19 19:52:05 +00:00
%thead
%tr
%th Page version
%th Author
%th Commit Message
%th Last updated
%th Format
2012-02-19 19:52:05 +00:00
%tbody
- @page.versions.each_with_index do |version, index|
- commit = version
2012-02-19 19:52:05 +00:00
%tr
2012-02-19 19:56:18 +00:00
%td
= link_to project_wiki_path_with_version(@project, @page,
commit.id, index == 0) do
= truncate_sha(commit.id)
%td
= commit.author.name
%td
= commit.message
%td
#{time_ago_with_tooltip(version.authored_date)}
%td
%strong
= @page.page.wiki.page(@page.page.name, commit.id).try(:format)