rosa-build/app/views/projects/wiki/_editor.html.haml

38 lines
1.7 KiB
Plaintext
Raw Normal View History

2014-01-21 04:51:49 +00:00
#gollum-editor{class: "#{@new ? 'create' : 'edit'}", :'data-escaped-name' => escaped_name}
= form_tag editor_path(@project, @name), name: 'gollum-editor', method: @new ? :post : :put do
%fieldset#gollum-editor-fields
- if @new
#gollum-editor-title-field.singleline
2014-01-21 04:51:49 +00:00
= label_tag :page, t("wiki.page_title"), class: 'jaws'
= text_field_tag :page, @name, id: "gollum-editor-page-title"
- else
2014-01-21 04:51:49 +00:00
= hidden_field_tag :page, @name, id: "gollum-editor-page-title"
= render 'editor_toolbar'
2014-01-21 04:51:49 +00:00
= text_area_tag :content, @content, id: "gollum-editor-body", :'data-markup-lang' => format
- if has_footer?
#gollum-editor-edit-footer.collapsed
2014-01-21 04:51:49 +00:00
= link_to "#", class: "button" do
%span= t("wiki.expand_collapse")
%h4= t("wiki.footer")
= text_area_tag :footer, footer.text_data
- if has_sidebar?
#gollum-editor-edit-sidebar.collapsed
2014-01-21 04:51:49 +00:00
= link_to "#", class: "button" do
%span= t("wiki.expand_collapse")
%h4= t("wiki.sidebar")
= text_area_tag :sidebar, sidebar.text_data
#gollum-editor-edit-summary.singleline
2014-01-21 04:51:49 +00:00
= label_tag :message, t("wiki.edit_commit_message"), class: "jaws"
= text_field_tag :message, t("wiki.commit_message_placeholder"), id: "gollum-editor-message-field"
%span.jaws
%br
2014-01-21 04:51:49 +00:00
= submit_tag t('wiki.save_button'), id: 'gollum-editor-submit', title: t('wiki.save_changes'), data: {'disable-with' => t('layout.saving')}
= link_to t("wiki.preview"), "javascript:void(0)", id: "gollum-editor-preview", class: "minibutton", title: t("wiki.preview_title"), :'data-url' => preview_project_wiki_index_path(@project)