2012-08-09 06:34:29 +02:00
|
|
|
%h3.page_title
|
2012-02-19 18:47:49 +01:00
|
|
|
= @wiki.title
|
2012-02-21 21:04:01 +01:00
|
|
|
%span.right
|
2012-08-11 00:07:50 +02:00
|
|
|
= link_to pages_project_wikis_path(@project), class: "btn small grouped" do
|
2012-08-09 06:34:29 +02:00
|
|
|
Pages
|
2012-02-21 21:04:01 +01:00
|
|
|
- if can? current_user, :write_wiki, @project
|
2012-08-11 00:07:50 +02:00
|
|
|
= link_to history_project_wiki_path(@project, @wiki), class: "btn small grouped" do
|
2012-02-21 21:04:01 +01:00
|
|
|
History
|
2012-08-11 00:07:50 +02:00
|
|
|
= link_to edit_project_wiki_path(@project, @wiki), class: "btn small grouped" do
|
2012-07-25 21:08:47 +02:00
|
|
|
%i.icon-edit
|
2012-02-21 23:31:18 +01:00
|
|
|
Edit
|
2012-07-25 21:08:47 +02:00
|
|
|
%br
|
|
|
|
.file_holder
|
|
|
|
.file_content.wiki
|
|
|
|
= preserve do
|
|
|
|
= markdown @wiki.content
|
2012-02-20 18:16:55 +01:00
|
|
|
|
2012-06-15 03:51:01 +02:00
|
|
|
%p.time Last edited by #{@wiki.user.name}, #{time_ago_in_words @wiki.created_at} ago
|
2012-02-21 23:31:18 +01:00
|
|
|
- if can? current_user, :admin_wiki, @project
|
2012-08-11 00:07:50 +02:00
|
|
|
= link_to project_wiki_path(@project, @wiki), confirm: "Are you sure you want to delete this page?", method: :delete do
|
2012-02-20 18:16:55 +01:00
|
|
|
Delete this page
|
2012-07-20 02:09:19 +02:00
|
|
|
|
2012-07-25 21:08:47 +02:00
|
|
|
%hr
|
2012-09-14 04:59:55 +02:00
|
|
|
.wiki_notes#notes= render "notes/notes_with_form", tid: @wiki.id, tt: "wiki"
|