de3ff174e7
Adds quick submit behavior to the forms for: - Blobs ("new file") - Commit messages - Issuables - Notes - Labels - Milestones - Wikis
42 lines
1.8 KiB
Text
42 lines
1.8 KiB
Text
= form_for [@project.namespace.becomes(Namespace), @project, @page], method: @page.persisted? ? :put : :post, html: { class: 'form-horizontal wiki-form gfm-form' } do |f|
|
|
-if @page.errors.any?
|
|
#error_explanation
|
|
.alert.alert-danger
|
|
- @page.errors.full_messages.each do |msg|
|
|
%p= msg
|
|
|
|
= f.hidden_field :title, value: @page.title
|
|
.form-group
|
|
= f.label :format, class: 'control-label'
|
|
.col-sm-10
|
|
= f.select :format, options_for_select(ProjectWiki::MARKUPS, {selected: @page.format}), {}, class: "form-control"
|
|
|
|
.row
|
|
.col-sm-offset-2.col-sm-10
|
|
%p.cgray
|
|
To link to a (new) page you can just type
|
|
%code [Link Title](page-slug)
|
|
\.
|
|
|
|
.form-group.wiki-content
|
|
= f.label :content, class: 'control-label'
|
|
.col-sm-10
|
|
= render layout: 'projects/md_preview', locals: { preview_class: "md-preview" } do
|
|
= render 'projects/zen', f: f, attr: :content, classes: 'description form-control js-quick-submit'
|
|
.col-sm-12.hint
|
|
.pull-left Wiki content is parsed with #{link_to "GitLab Flavored Markdown", help_page_path("markdown", "markdown"), target: '_blank'}
|
|
.pull-right Attach files by dragging & dropping or #{link_to "selecting them", '#', class: 'markdown-selector' }.
|
|
|
|
.clearfix
|
|
.error-alert
|
|
.form-group
|
|
= f.label :commit_message, class: 'control-label'
|
|
.col-sm-10= f.text_field :message, class: 'form-control', rows: 18
|
|
|
|
.form-actions
|
|
- if @page && @page.persisted?
|
|
= f.submit 'Save changes', class: "btn-save btn"
|
|
= link_to "Cancel", namespace_project_wiki_path(@project.namespace, @project, @page), class: "btn btn-cancel"
|
|
- else
|
|
= f.submit 'Create page', class: "btn-create btn"
|
|
= link_to "Cancel", namespace_project_wiki_path(@project.namespace, @project, :home), class: "btn btn-cancel"
|