gitlabhq/app/views/wikis/show.html.haml

24 lines
887 B
Plaintext
Raw Normal View History

2012-08-09 06:34:29 +02:00
%h3.page_title
2012-02-19 18:47:49 +01:00
= @wiki.title
2013-01-30 15:40:43 +01:00
%span.pull-right
2013-01-29 21:29:21 +01:00
= link_to pages_project_wikis_path(@project), class: "btn btn-small grouped" do
2012-08-09 06:34:29 +02:00
Pages
- if can? current_user, :write_wiki, @project
2013-01-29 21:29:21 +01:00
= link_to history_project_wiki_path(@project, @wiki), class: "btn btn-small grouped" do
History
2013-01-29 21:29:21 +01:00
= link_to edit_project_wiki_path(@project, @wiki), class: "btn btn-small grouped" do
%i.icon-edit
Edit
%br
- if @wiki != @most_recent_wiki
.warning_message
This is an old version of this page.
You can view the #{link_to "most recent version", project_wiki_path(@project, @wiki)} or browse the #{link_to "history", history_project_wiki_path(@project, @wiki)}.
2012-10-17 15:14:20 +02:00
.file_holder
.file_content.wiki
= preserve do
= markdown @wiki.content
2012-02-20 18:16:55 +01:00
%p.time Last edited by #{link_to_member @project, @wiki.user}, #{time_ago_in_words @wiki.created_at} ago