gitlab-org--gitlab-foss/app/views/projects/wikis/pages.html.haml
Dmitriy Zaporozhets 4b65b0e0f5
Fix wiki
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-09-25 13:56:23 +03:00

12 lines
371 B
Text

= render 'nav'
%h3.page-title
All Pages
%ul.bordered-list
- @wiki_pages.each do |wiki_page|
%li
%h4
= link_to wiki_page.title, project_wiki_path(@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'