2015-09-17 06:16:24 -04:00
|
|
|
- page_title "History", @page.title.capitalize, "Wiki"
|
2016-11-14 16:33:21 -05:00
|
|
|
|
2016-06-30 09:01:26 -04:00
|
|
|
%div{ class: container_class }
|
2016-11-29 20:46:40 -05:00
|
|
|
.wiki-page-header.has-sidebar-toggle
|
2016-11-14 16:33:21 -05:00
|
|
|
%button.btn.btn-default.sidebar-toggle.js-sidebar-wiki-toggle{ role: "button", type: "button" }
|
|
|
|
= icon('angle-double-left')
|
2016-11-15 04:17:44 -05:00
|
|
|
|
2016-06-21 16:54:00 -04:00
|
|
|
.nav-text
|
2016-11-15 04:17:44 -05:00
|
|
|
%h2.wiki-page-title
|
2016-06-21 16:54:00 -04:00
|
|
|
= link_to @page.title.capitalize, namespace_project_wiki_path(@project.namespace, @project, @page)
|
2016-11-15 04:17:44 -05:00
|
|
|
%span.light
|
|
|
|
·
|
|
|
|
History
|
2016-02-07 11:57:28 -05:00
|
|
|
|
2016-06-21 16:54:00 -04:00
|
|
|
.table-holder
|
|
|
|
%table.table
|
|
|
|
%thead
|
2015-10-19 05:19:45 -04:00
|
|
|
%tr
|
2016-06-21 16:54:00 -04:00
|
|
|
%th Page version
|
|
|
|
%th Author
|
|
|
|
%th Commit Message
|
|
|
|
%th Last updated
|
|
|
|
%th Format
|
|
|
|
%tbody
|
|
|
|
- @page.versions.each_with_index do |version, index|
|
|
|
|
- commit = version
|
|
|
|
%tr
|
|
|
|
%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)
|
2016-11-14 16:33:21 -05:00
|
|
|
|
|
|
|
= render 'sidebar'
|