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

pages.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: 829617d77cd0c850cfbb294271684e2976cc2afe (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
= render 'nav'
%h3.page-title
  All Pages
  = render 'main_links'
%br
%table
  %thead
    %tr
      %th Title
      %th Format
      %th Last updated
      %th Updated by
  %tbody
    - @wiki_pages.each do |wiki_page|
      %tr
        %td
          %strong= link_to wiki_page.title.titleize, project_wiki_path(@project, wiki_page)
        %td
          %strong= wiki_page.format
        %td
          = wiki_page.created_at.to_s(:short) do
            (#{time_ago_in_words(wiki_page.created_at)}
            ago)
        %td
          = commit_author_link(wiki_page.version, avatar: true, size: 24)