2012-02-19 19:47:49 +02:00
|
|
|
%h3
|
|
|
|
= @wiki.title
|
2012-02-21 22:04:01 +02:00
|
|
|
%span.right
|
|
|
|
- if can? current_user, :write_wiki, @project
|
2012-02-21 23:09:46 +02:00
|
|
|
= link_to history_project_wiki_path(@project, @wiki), :class => "btn small padded" do
|
2012-02-21 22:04:01 +02:00
|
|
|
History
|
2012-02-22 00:31:18 +02:00
|
|
|
= link_to edit_project_wiki_path(@project, @wiki), :class => "btn small" do
|
|
|
|
Edit
|
2012-02-20 20:16:55 +03:00
|
|
|
%hr
|
2012-03-27 23:04:21 +03:00
|
|
|
.wiki_content
|
2012-04-11 19:36:52 +00:00
|
|
|
= preserve do
|
2012-04-17 23:02:21 +02:00
|
|
|
= markdown @wiki.content
|
2012-02-20 20:16:55 +03:00
|
|
|
|
|
|
|
%p.time Last edited by #{@wiki.user.name}, in #{time_ago_in_words @wiki.created_at}
|
2012-02-22 00:31:18 +02:00
|
|
|
- if can? current_user, :admin_wiki, @project
|
2012-02-20 20:16:55 +03:00
|
|
|
= link_to project_wiki_path(@project, @wiki), :confirm => "Are you sure you want to delete this page?", :method => :delete do
|
|
|
|
Delete this page
|