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-02-21 21:04:01 +01:00
|
|
|
.alert-message.block-message.warning
|
2012-06-04 00:37:27 +02:00
|
|
|
%p
|
|
|
|
Wiki content is parsed with #{link_to "Markdown", "http://en.wikipedia.org/wiki/Markdown"}.
|
2012-02-21 21:04:01 +01:00
|
|
|
%br
|
2012-06-04 00:37:27 +02:00
|
|
|
To add link to new page you can just type
|
2012-02-21 21:04:01 +01:00
|
|
|
%code [Link Title](page-slug)
|
2012-02-19 18:47:49 +01:00
|
|
|
.clearfix
|
2012-02-19 15:35:31 +01:00
|
|
|
= f.label :title
|
2012-02-19 18:47:49 +01:00
|
|
|
.input= f.text_field :title, :class => :xxlarge
|
2012-02-19 18:05:35 +01:00
|
|
|
= f.hidden_field :slug
|
2012-02-19 18:47:49 +01:00
|
|
|
.clearfix
|
2012-02-19 15:35:31 +01:00
|
|
|
= f.label :content
|
2012-02-19 18:47:49 +01:00
|
|
|
.input= f.text_area :content, :class => :xxlarge
|
2012-02-19 15:35:31 +01:00
|
|
|
.actions
|
2012-02-19 18:47:49 +01:00
|
|
|
= f.submit 'Save', :class => "primary btn"
|
|
|
|
= link_to "Cancel", project_wiki_path(@project, :index), :class => "btn"
|