9a31844e2a
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
29 lines
746 B
Text
29 lines
746 B
Text
= render 'nav'
|
|
%h3.page-title
|
|
%span.light History for
|
|
= link_to @wiki.title.titleize, project_wiki_path(@project, @wiki)
|
|
|
|
%table.table
|
|
%thead
|
|
%tr
|
|
%th Page version
|
|
%th Author
|
|
%th Commit Message
|
|
%th Last updated
|
|
%th Format
|
|
%tbody
|
|
- @wiki.versions.each do |version|
|
|
- commit = version
|
|
%tr
|
|
%td
|
|
= link_to project_wiki_path(@project, @wiki, version_id: commit.id) do
|
|
= commit.short_id
|
|
%td
|
|
= commit_author_link(commit, avatar: true, size: 24)
|
|
%td
|
|
= commit.title
|
|
%td
|
|
#{time_ago_with_tooltip(version.date)}
|
|
%td
|
|
%strong
|
|
= @wiki.page.wiki.page(@wiki.page.name, commit.id).try(:format)
|