_new.html.haml 754 Bytes
Newer Older
1
%div#modal-new-wiki.modal
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
2 3 4 5 6 7 8 9
  .modal-dialog
    .modal-content
      .modal-header
        %a.close{href: "#", "data-dismiss" => "modal"} ×
        %h3.page-title New Wiki Page
      .modal-body
        = label_tag :new_wiki_path do
          %span Page slug
Vinnie Okada's avatar
Vinnie Okada committed
10
        = text_field_tag :new_wiki_path, nil, placeholder: 'how-to-setup', class: 'form-control', required: true, :'data-wikis-path' => namespace_project_wikis_path(@project.namespace, @project)
11 12
        %p.hidden.text-danger{data: { error: "slug" }}
          The page slug is invalid. Please don't use characters other then: a-z 0-9 _ - and /
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
13
        %p.hint
14
          Please don't use spaces.
Douwe Maan's avatar
Douwe Maan committed
15 16
        .form-actions
          = link_to 'Create Page', '#', class: 'build-new-wiki btn btn-create'