37 lines
1.4 KiB
Plaintext
37 lines
1.4 KiB
Plaintext
include ../components/wysiwyg.jade
|
|
|
|
section.history
|
|
<% if (commentsVisible || historyVisible) { %>
|
|
ul.history-tabs
|
|
<% if (commentsVisible) { %>
|
|
li
|
|
a(
|
|
href="",
|
|
class="active",
|
|
data-section-class="history-comments"
|
|
)
|
|
tg-svg(svg-icon="icon-writer")
|
|
span.tab-title(translate="COMMENTS.TITLE")
|
|
<% } %>
|
|
<% if (historyVisible) { %>
|
|
li
|
|
a(
|
|
href="",
|
|
data-section-class="history-activity"
|
|
)
|
|
tg-svg(svg-icon="icon-timeline")
|
|
span.tab-title(translate="ACTIVITY.TITLE")
|
|
<% } %>
|
|
<% } %>
|
|
section.history-comments
|
|
.comments-list
|
|
div(tg-editable-wysiwyg, ng-model!="<%- ngmodel %>")
|
|
div(tg-check-permission!="modify_<%- type %>", tg-toggle-comment, class="add-comment")
|
|
textarea(ng-attr-placeholder="{{'COMMENTS.TYPE_NEW_COMMENT' | translate}}", ng-model!="<%- ngmodel %>.comment", tg-markitup="tg-markitup")
|
|
<% if (mode !== "edit") { %>
|
|
+wysihelp
|
|
button(type="button", ng-disabled!="!<%- ngmodel %>.comment.length" title="{{'COMMENTS.COMMENT' | translate}}", translate="COMMENTS.COMMENT", class="button button-green save-comment")
|
|
<% } %>
|
|
section.history-activity.hidden
|
|
.changes-list
|