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/record/bottom.tpl
T
2021-05-11 12:53:58 +03:00

44 lines
1.5 KiB
Smarty

{{#each panelList}}
{{#if isRightAfterDelimiter}}
<div class="panels-show-more-delimiter">
<a href="javascript:" data-action="showMorePanels" title="{{translate 'Show more'}}">
<span class="fas fa-ellipsis-h fa-lg"></span>
</a>
</div>
{{/if}}
<div
class="panel panel-{{#if style}}{{style}}{{else}}default{{/if}} panel-{{name}}{{#if hidden}} hidden{{/if}}{{#if sticked}} sticked{{/if}}"
data-name="{{name}}"
data-name="{{name}}"
data-style="{{#if style}}{{style}}{{/if}}"
>
<div class="panel-heading">
<div class="pull-right btn-group panel-actions-container">{{{var actionsViewKey ../this}}}</div>
<h4 class="panel-title">
{{#unless notRefreshable}}
<span
style="cursor: pointer;"
class="action"
title="{{translate 'clickToRefresh' category='messages'}}"
data-action="refresh"
data-panel="{{name}}"
>
{{/unless}}
{{#if titleHtml}}
{{{titleHtml}}}
{{else}}
{{title}}
{{/if}}
{{#unless notRefreshable}}
</span>
{{/unless}}
</h4>
</div>
<div class="panel-body{{#if isForm}} panel-body-form{{/if}}" data-name="{{name}}">
{{{var name ../this}}}
</div>
</div>
{{/each}}