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

38 lines
1.1 KiB
Text
Raw Normal View History

2015-09-25 12:07:36 +05:30
- page_title "History", @page.title.capitalize, "Wiki"
2014-09-02 18:07:02 +05:30
= render 'nav'
2016-08-24 12:49:21 +05:30
%div{ class: container_class }
2016-06-22 15:30:34 +05:30
.top-area
.nav-text
%strong
= link_to @page.title.capitalize, namespace_project_wiki_path(@project.namespace, @project, @page)
%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)