debian-mirror-gitlab/app/views/projects/wikis/pages.html.haml

17 lines
493 B
Text
Raw Normal View History

2015-12-23 02:04:40 +05:30
- page_title "Pages", "Wiki"
2015-09-25 12:07:36 +05:30
= render "header_title"
2014-09-02 18:07:02 +05:30
= render 'nav'
2015-09-25 12:07:36 +05:30
.gray-content-block
2015-12-23 02:04:40 +05:30
All pages in this wiki are listed below.
2015-09-25 12:07:36 +05:30
%ul.content-list
2014-09-02 18:07:02 +05:30
- @wiki_pages.each do |wiki_page|
%li
%h4
2015-04-26 12:48:37 +05:30
= link_to wiki_page.title, namespace_project_wiki_path(@project.namespace, @project, wiki_page)
2014-09-02 18:07:02 +05:30
%small (#{wiki_page.format})
.pull-right
2015-04-26 12:48:37 +05:30
%small Last edited #{time_ago_with_tooltip(wiki_page.commit.authored_date)}
2014-09-02 18:07:02 +05:30
= paginate @wiki_pages, theme: 'gitlab'