summaryrefslogtreecommitdiff
path: root/app/views/projects/wikis/history.html.haml
blob: d3a66c48c9b8625934c77d26b3fa01e7325ef117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
= render 'nav'
%h3.page-title
  %span.light History for
  = link_to @page.title, project_wiki_path(@project, @page)

%table.table
  %thead
    %tr
      %th Page version
      %th Author
      %th Commit Message
      %th Last updated
      %th Format
  %tbody
    - @page.versions.each do |version|
      - commit = version
      %tr
        %td
          = link_to project_wiki_path(@project, @page, version_id: commit.id) do
            = commit.id[0..10]
        %td
          = commit.author.name
        %td
          = commit.message
        %td
          #{time_ago_with_tooltip(version.date)}
        %td
          %strong
            = @page.page.wiki.page(@page.page.name, commit.id).try(:format)