28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
extends dummy-layout
|
|
|
|
block head
|
|
title Taiga Project management web application with scrum in mind!
|
|
|
|
block content
|
|
div.wrapper(tg-wiki-edit, ng-controller="WikiEditController as ctrl",
|
|
ng-init="section='wiki'")
|
|
sidebar.menu-secondary.extrabar(tg-check-permission, permission="view_wiki_links")
|
|
section.wiki-nav(tg-wiki-nav, ng-model="wikiLinks")
|
|
section.main.wiki
|
|
//Include views/components/mainTitle
|
|
header
|
|
h1
|
|
span(tg-bo-bind="project.name")
|
|
span.green Wiki
|
|
span.wiki-title(tg-bo-bind='wikiSlug|unslugify')
|
|
.action-buttons
|
|
a.button.button-green.save-wiki(href="", title="Save", ng-click="ctrl.save()") Save
|
|
a.button.button-red.cancel-wiki(href="", title="CAncel", ng-click="ctrl.cancel()") Cancel
|
|
|
|
section.wysiwyg
|
|
textarea(placeholder="Write a your wiki page", ng-model="wiki.content", tg-markitup)
|
|
|
|
- var attachModel = "wiki"
|
|
- var permissionSuffix = "wiki_page"
|
|
include views/modules/attachments
|