gitlab-org--gitlab-foss/app/views/projects/wikis/edit.html.haml

35 lines
1.2 KiB
Text
Raw Normal View History

2018-06-15 07:47:37 -04:00
- @content_class = "limit-container-width" unless fluid_layout
- add_to_breadcrumbs _("Wiki"), project_wiki_path(@project, @page)
- breadcrumb_title @page.persisted? ? _("Edit") : _("New")
- page_title @page.persisted? ? _("Edit") : _("New"), @page.human_title, _("Wiki")
2018-02-05 12:17:21 -05:00
= wiki_page_errors(@error)
2017-03-04 09:03:14 -05:00
.wiki-page-header.top-area.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.human_title, project_wiki_path(@project, @page)
- else
= @page.human_title
%span.light
·
2016-06-15 10:31:41 -04:00
- if @page.persisted?
2017-09-27 13:13:29 -04:00
= s_("Wiki|Edit Page")
2016-06-15 10:31:41 -04:00
- else
2017-09-27 13:13:29 -04:00
= s_("Wiki|Create Page")
.nav-controls
- if @page.persisted?
= link_to project_wiki_history_path(@project, @page), class: "btn" do
2017-09-27 13:13:29 -04:00
= s_("Wiki|Page history")
- if can?(current_user, :admin_wiki, @project)
#delete-wiki-modal-wrapper{ data: { delete_wiki_url: project_wiki_path(@project, @page), page_title: @page.human_title } }
= render 'form', uploads_path: wiki_attachment_upload_url
= render 'sidebar'