71ab011a17
Conflicts: app/views/layouts/project_resource.html.haml app/views/wikis/edit.html.haml app/views/wikis/pages.html.haml app/views/wikis/show.html.haml spec/features/gitlab_flavored_markdown_spec.rb
30 lines
1 KiB
Plaintext
30 lines
1 KiB
Plaintext
= render 'wikis/nav'
|
|
%h3.page_title
|
|
= @wiki.title.titleize
|
|
= render partial: 'main_links'
|
|
%br
|
|
- if @wiki.historical?
|
|
.warning_message
|
|
This is an old version of this page.
|
|
You can view the #{link_to "most recent version", project_wiki_path(@project, @wiki)} or browse the #{link_to "history", history_project_wiki_path(@project, @wiki)}.
|
|
|
|
.file_holder
|
|
.file_title
|
|
= @wiki.title
|
|
%span.options
|
|
= link_to pages_project_wikis_path(@project), class: "btn btn-tiny grouped" do
|
|
Pages
|
|
- if can? current_user, :write_wiki, @project
|
|
= link_to history_project_wiki_path(@project, @wiki), class: "btn btn-tiny grouped" do
|
|
History
|
|
= link_to edit_project_wiki_path(@project, @wiki), class: "btn btn-tiny grouped" do
|
|
%i.icon-edit
|
|
Edit
|
|
|
|
.file_content.wiki
|
|
= preserve do
|
|
= render_wiki_content(@wiki)
|
|
|
|
- commit = CommitDecorator.new(@wiki.version)
|
|
%p.time Last edited by #{commit.author_link(avatar: true, size: 16)} #{time_ago_in_words @wiki.created_at} ago
|