summaryrefslogtreecommitdiff
path: root/app/views/projects/wikis/_new.html.haml
blob: 6834969de8b44e3a77b57b5f05fc6758d44e23d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%div#modal-new-wiki.modal.hide
  .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
        = 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)
        %p.hint
          Please don't use spaces.
      .modal-footer
        = link_to 'Build', '#', class: 'build-new-wiki btn btn-create'