gitlabhq/app/views/wikis/history.html.haml

32 lines
747 B
Plaintext
Raw Normal View History

= render 'wikis/nav'
2012-08-09 06:34:29 +02:00
%h3.page_title
%span.light History for
= @wiki.title.titleize
= render partial: 'main_links'
%br
2012-09-03 20:53:16 +02:00
%table
2012-02-19 20:52:05 +01:00
%thead
%tr
%th Page version
%th Author
%th Commit Message
%th Last updated
%th Format
2012-02-19 20:52:05 +01:00
%tbody
- @wiki.versions.each do |version|
- commit = version
2012-02-19 20:52:05 +01:00
%tr
2012-02-19 20:56:18 +01:00
%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_in_words(version.date)
ago
%td
%strong
= @wiki.page.wiki.page(@wiki.page.name, commit.id).try(:format)