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

16 lines
582 B
Plaintext
Raw Normal View History

2012-02-19 18:47:49 +01:00
%h3
= @wiki.title
2012-02-20 18:16:55 +01:00
= link_to edit_project_wiki_path(@project, @wiki), :class => "right btn small" do
Edit
2012-02-19 18:47:49 +01:00
- if can? current_user, :write_wiki, @project
2012-02-19 20:52:05 +01:00
= link_to history_project_wiki_path(@project, @wiki), :class => "right btn small" do
History
2012-02-20 18:16:55 +01:00
%hr
2012-02-19 18:47:49 +01:00
2012-02-20 18:16:55 +01:00
= markdown_to_html @wiki.content
%p.time Last edited by #{@wiki.user.name}, in #{time_ago_in_words @wiki.created_at}
- if can? current_user, :write_wiki, @project
= link_to project_wiki_path(@project, @wiki), :confirm => "Are you sure you want to delete this page?", :method => :delete do
Delete this page