40 lines
1.4 KiB
Text
40 lines
1.4 KiB
Text
- @content_class = "limit-container-width limit-container-width-sm" unless fluid_layout
|
|
- page_title "Edit", @page.title.capitalize, "Wiki"
|
|
|
|
- if @conflict
|
|
.alert.alert-danger
|
|
Someone edited the page the same time you did. Please check out
|
|
= link_to "the page", project_wiki_path(@project, @page), target: "_blank"
|
|
and make sure your changes will not unintentionally remove theirs.
|
|
|
|
.wiki-page-header.has-sidebar-toggle
|
|
%button.btn.btn-default.sidebar-toggle.js-sidebar-wiki-toggle{ role: "button", type: "button" }
|
|
= icon('angle-double-left')
|
|
|
|
.nav-text
|
|
%h2.wiki-page-title
|
|
- if @page.persisted?
|
|
= link_to @page.title.capitalize, project_wiki_path(@project, @page)
|
|
- else
|
|
= @page.title.capitalize
|
|
%span.light
|
|
·
|
|
- if @page.persisted?
|
|
Edit Page
|
|
- else
|
|
Create Page
|
|
|
|
.nav-controls
|
|
- if can?(current_user, :create_wiki, @project)
|
|
= link_to '#modal-new-wiki', class: "add-new-wiki btn btn-new", "data-toggle" => "modal" do
|
|
New page
|
|
- if @page.persisted?
|
|
= link_to project_wiki_history_path(@project, @page), class: "btn" do
|
|
Page history
|
|
- if can?(current_user, :admin_wiki, @project)
|
|
= link_to project_wiki_path(@project, @page), data: { confirm: "Are you sure you want to delete this page?"}, method: :delete, class: "btn btn-danger" do
|
|
Delete
|
|
|
|
= render 'form'
|
|
|
|
= render 'sidebar'
|