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/modals/duplicate.tpl
T
2023-05-02 14:34:56 +03:00

22 lines
626 B
Smarty

<h4>{{translate 'duplicate' category="messages"}}</h4>
{{#if scope}}
<div class="list-container margin-top-2x">{{{record}}}</div>
{{else}}
<div class="margin-top-2x">
<table class="table table-panel">
{{#each duplicates}}
<tr>
<td>
<a
href="#{{#if _entityType}}{{_entityType}}{{else}}{{../scope}}{{/if}}/view/{{id}}"
target="_BLANK"
>{{name}}</a>
{{#if _entityType}}({{translate _entityType category='scopeNames'}}){{/if}}
</td>
</tr>
{{/each}}
</table>
{{/if}}
</div>