2012-02-19 18:05:35 +01:00
|
|
|
= form_for [@project, @wiki] do |f|
|
2012-02-19 15:35:31 +01:00
|
|
|
-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
|
|
|
|
|
2012-07-26 13:45:17 +02:00
|
|
|
.main_box
|
|
|
|
.top_box_content
|
|
|
|
= f.label :title
|
2012-08-11 00:07:50 +02:00
|
|
|
.input= f.text_field :title, class: 'span8'
|
2012-07-26 13:45:17 +02:00
|
|
|
= f.hidden_field :slug
|
|
|
|
.middle_box_content
|
|
|
|
.input
|
|
|
|
%span.cgray
|
2012-09-06 09:50:47 +02:00
|
|
|
Wiki content is parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.
|
2012-08-24 17:35:21 +02:00
|
|
|
To link to a (new) page you can just type
|
2012-07-26 13:45:17 +02:00
|
|
|
%code [Link Title](page-slug)
|
2012-08-24 17:35:21 +02:00
|
|
|
\.
|
2012-07-26 13:45:17 +02:00
|
|
|
|
|
|
|
.bottom_box_content
|
|
|
|
= f.label :content
|
2012-10-09 23:06:33 +02:00
|
|
|
.input= f.text_area :content, class: 'span8 gfm-input'
|
2012-02-19 15:35:31 +01:00
|
|
|
.actions
|
2012-08-30 21:15:34 +02:00
|
|
|
= f.submit 'Save', class: "save-btn btn"
|
|
|
|
= link_to "Cancel", project_wiki_path(@project, :index), class: "btn cancel-btn"
|