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

23 lines
763 B
Plaintext
Raw Normal View History

2012-02-19 18:47:49 +01:00
%h3
= @wiki.title
%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
History
2012-07-05 08:35:23 +02:00
= link_to edit_project_wiki_path(@project, @wiki), :class => "btn small grouped" do
%i.icon-edit
Edit
%br
.file_holder
.file_content.wiki
= preserve do
= markdown @wiki.content
2012-02-20 18:16:55 +01:00
%p.time Last edited by #{@wiki.user.name}, #{time_ago_in_words @wiki.created_at} ago
- 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
%hr
2012-07-20 02:09:19 +02:00
.wiki_notes#notes= render "notes/notes", :tid => @wiki.id, :tt => "wiki"