web-apps/apps/common/main/lib/template/CommentsPanel.template

14 lines
925 B
Plaintext
Raw Normal View History

2016-03-11 00:48:53 +00:00
<div id="comments-box" class="layout-ct vbox">
2020-06-05 13:10:48 +00:00
<div class="layout-item messages-ct"></div>
2016-03-11 00:48:53 +00:00
<div class="layout-item add-link-ct">
2021-06-02 18:16:07 +00:00
<label class="btn new" data-hint="1" data-hint-direction="bottom" data-hint-offset="medium"><%=textAddCommentToDoc%></label>
2016-03-11 00:48:53 +00:00
</div>
<div style="display: none;" class="layout-item new-comment-ct">
<div class="inner-ct">
2021-06-02 18:16:07 +00:00
<textarea id="comment-msg-new" class="user-select textarea-control" placeholder="<%=textEnterCommentHint%>" maxlength="<%=maxCommLength%>" data-hint="2" data-hint-direction="left-top"></textarea>
2016-03-11 00:48:53 +00:00
</div>
2021-06-02 18:16:07 +00:00
<button class="btn add normal dlg-btn primary" data-hint="2" data-hint-direction="bottom" data-hint-offset="big"><%=textAddComment%></button>
<button class="btn cancel normal dlg-btn" data-hint="2" data-hint-direction="bottom" data-hint-offset="big"><%=textCancel%></button>
2016-03-11 00:48:53 +00:00
</div>
</div>