8e90011369
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
39 lines
1.4 KiB
Text
39 lines
1.4 KiB
Text
= form_for [@project, @wiki], method: @wiki.persisted? ? :put : :post, html: { class: 'form-horizontal' } do |f|
|
|
-if @wiki.errors.any?
|
|
#error_explanation
|
|
%h2= "#{pluralize(@wiki.errors.count, "error")} prohibited this wiki from being saved:"
|
|
%ul
|
|
- @wiki.errors.full_messages.each do |msg|
|
|
%li= msg
|
|
|
|
= f.hidden_field :title, value: @wiki.title
|
|
.form-group
|
|
= f.label :format, class: 'control-label'
|
|
.col-sm-10
|
|
= f.select :format, options_for_select(GollumWiki::MARKUPS, {selected: @wiki.format}), {}, class: "form-control"
|
|
|
|
.row
|
|
.col-sm-2
|
|
.col-sm-10
|
|
%p.cgray
|
|
Wiki content is parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.
|
|
To link to a (new) page you can just type
|
|
%code [Link Title](page-slug)
|
|
\.
|
|
|
|
.form-group
|
|
= f.label :content, class: 'control-label'
|
|
.col-sm-10
|
|
= f.text_area :content, class: 'form-control js-gfm-input', rows: 18
|
|
|
|
.form-group
|
|
= f.label :commit_message, class: 'control-label'
|
|
.col-sm-10= f.text_field :message, class: 'form-control', rows: 18
|
|
|
|
.form-actions
|
|
- if @wiki && @wiki.persisted?
|
|
= f.submit 'Save changes', class: "btn-save btn"
|
|
= link_to "Cancel", project_wiki_path(@project, @wiki), class: "btn btn-cancel"
|
|
- else
|
|
= f.submit 'Create page', class: "btn-create btn"
|
|
= link_to "Cancel", project_wiki_path(@project, :home), class: "btn btn-cancel"
|