debian-mirror-gitlab/app/views/projects/wikis/history.html.haml

43 lines
1.3 KiB
Text
Raw Normal View History

2015-09-25 12:07:36 +05:30
- page_title "History", @page.title.capitalize, "Wiki"
2017-08-17 22:00:37 +05:30
2016-08-24 12:49:21 +05:30
%div{ class: container_class }
2017-08-17 22:00:37 +05:30
.wiki-page-header.has-sidebar-toggle
%button.btn.btn-default.sidebar-toggle.js-sidebar-wiki-toggle{ role: "button", type: "button" }
= icon('angle-double-left')
2016-06-22 15:30:34 +05:30
.nav-text
2017-08-17 22:00:37 +05:30
%h2.wiki-page-title
2016-06-22 15:30:34 +05:30
= link_to @page.title.capitalize, namespace_project_wiki_path(@project.namespace, @project, @page)
2017-08-17 22:00:37 +05:30
%span.light
·
History
2016-04-02 18:10:28 +05:30
2016-06-22 15:30:34 +05:30
.table-holder
%table.table
%thead
2015-11-26 14:37:03 +05:30
%tr
2016-06-22 15:30:34 +05:30
%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)
2017-08-17 22:00:37 +05:30
= render 'sidebar'