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

history.html.haml « wikis « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 138c384353d144772fb110dd5fe7d09254b54efe (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
30
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)