summaryrefslogtreecommitdiff
path: root/app/views/projects/wikis/pages.html.haml
blob: 2f6162fa3c5f01d7ccb384e882d1e8c5ef072638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- page_title "Pages", "Wiki"

= render 'nav'

%ul.content-list
  - @wiki_pages.each do |wiki_page|
    %li
      = link_to wiki_page.title, namespace_project_wiki_path(@project.namespace, @project, wiki_page)
      %small (#{wiki_page.format})
      .pull-right
        %small Last edited #{time_ago_with_tooltip(wiki_page.commit.authored_date)}
= paginate @wiki_pages, theme: 'gitlab'