BigW Consortium Gitlab

history.html.haml 1006 Bytes
Newer Older
1 2 3
- page_title "History", @page.title.capitalize, "Wiki"
= render "header_title"

4
= render 'nav'
Dmitriy Zaporozhets committed
5 6 7 8
.gray-content-block
  %h3.page-title
    %span.light History for
    = link_to @page.title, namespace_project_wiki_path(@project.namespace, @project, @page)
9

Douwe Maan committed
10 11 12
.table-holder
  %table.table
    %thead
Valery Sizov committed
13
      %tr
Douwe Maan committed
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
        %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)