This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/client/res/templates/stream/panel.tpl
T
Yuri Kuznetsov 4634597b7f tabindex
2022-08-12 10:17:46 +03:00

37 lines
1.3 KiB
Smarty

<div class="form-group post-container{{#if postDisabled}} hidden{{/if}}">
<div class="textarea-container">{{{postField}}}</div>
<div class="buttons-panel margin hide floated-row clearfix">
<div>
<button class="btn btn-primary btn-xs-wide post">{{translate 'Post'}}</button>
{{#if allowInternalNotes}}
<span
style="cursor: pointer;"
class="internal-mode-switcher{{#if isInternalNoteMode}} enabled{{/if}} action"
data-action="switchInternalMode"
title="{{translate 'internalPost' category='messages'}}"
>
<span class="fas fa-lock"></span>
</span>
{{/if}}
</div>
<div class="attachments-container">
{{{attachments}}}
</div>
<a role="button" tabindex="-1" class="text-muted pull-right stream-post-info">
<span class="fas fa-info-circle"></span>
</a>
<a
role="button"
tabindex="0"
class="text-muted pull-right stream-post-preview hidden action"
title="{{translate 'Preview'}}"
data-action="preview"
>
<span class="fas fa-eye"></span>
</a>
</div>
</div>
<div class="list-container">
{{{list}}}
</div>