Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/wikis/history.html.haml')
-rw-r--r--app/views/projects/wikis/history.html.haml31
1 files changed, 31 insertions, 0 deletions
diff --git a/app/views/projects/wikis/history.html.haml b/app/views/projects/wikis/history.html.haml
new file mode 100644
index 00000000000..138c384353d
--- /dev/null
+++ b/app/views/projects/wikis/history.html.haml
@@ -0,0 +1,31 @@
+= render 'nav'
+%h3.page_title
+ %span.light History for
+ = @wiki.title.titleize
+ = render 'main_links'
+%br
+%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_in_words(version.date)
+ ago
+ %td
+ %strong
+ = @wiki.page.wiki.page(@wiki.page.name, commit.id).try(:format)