summaryrefslogtreecommitdiff
path: root/app/views/projects/wikis/edit.html.haml
blob: bf5d09d50c20ab993b43624fe0e039fcf78c7a01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
- @no_container = true
- page_title "Edit", @page.title.capitalize, "Wiki"
= render 'nav'

%div{ class: (container_class) }
  .top-area
    .nav-text
      %strong
        - if @page.persisted?
          = link_to @page.title.capitalize, namespace_project_wiki_path(@project.namespace, @project, @page)
        - else
          = @page.title.capitalize
      %span.light
        ·
        Edit Page

    .nav-controls
      - if can?(current_user, :create_wiki, @project)
        = link_to '#modal-new-wiki', class: "add-new-wiki btn btn-new", "data-toggle" => "modal" do
          New Page
      = render 'main_links'


  = render 'form'