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-02-21 22:09:46 +01:00
|
|
|
= link_to history_project_wiki_path(@project, @wiki), :class => "btn small padded" do
|
2012-02-21 21:04:01 +01:00
|
|
|
History
|
2012-02-21 23:31:18 +01:00
|
|
|
= link_to edit_project_wiki_path(@project, @wiki), :class => "btn small" do
|
|
|
|
Edit
|
2012-02-20 18:16:55 +01:00
|
|
|
%hr
|
2012-03-27 22:04:21 +02:00
|
|
|
.wiki_content
|
2012-04-11 21:36:52 +02:00
|
|
|
= preserve do
|
2012-04-17 23:02:21 +02:00
|
|
|
= 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
|