2012-02-19 18:47:49 +01:00
|
|
|
%h3
|
|
|
|
= @wiki.title
|
2012-02-21 21:04:01 +01:00
|
|
|
%span.right
|
|
|
|
- if can? current_user, :write_wiki, @project
|
2012-07-05 08:35:23 +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-07-05 08:35:23 +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-02-20 18:16:55 +01:00
|
|
|
= link_to project_wiki_path(@project, @wiki), :confirm => "Are you sure you want to delete this page?", :method => :delete do
|
|
|
|
Delete this page
|
2012-07-20 02:09:19 +02:00
|
|
|
|
2012-07-25 21:08:47 +02:00
|
|
|
%hr
|
2012-07-20 02:09:19 +02:00
|
|
|
.wiki_notes#notes= render "notes/notes", :tid => @wiki.id, :tt => "wiki"
|