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/admin/index.tpl
T
2017-12-19 15:41:52 +02:00

29 lines
1.0 KiB
Smarty

<div class="page-header"><h3>{{translate 'Administration' scope='Admin'}}</h3></div>
<div class="admin-content">
<div class="row">
<div class="col-md-7">
<div class="admin-tables-container">
{{#each panelDataList}}
<div>
<h4>{{translate label scope='Admin'}}</h4>
<table class="table table-bordered table-admin-panel" data-name="{{name}}">
{{#each itemList}}
<tr>
<td>
<a href="{{url}}">{{translate label scope='Admin' category='labels'}}</a>
</td>
<td>{{translate description scope='Admin' category='descriptions'}}</td>
</tr>
{{/each}}
</table>
</div>
{{/each}}
</div>
</div>
<div class="col-md-5 admin-right-column">
<div class="notifications-panel-container">{{{notificationsPanel}}}</div>
<iframe src="{{iframeUrl}}" style="width: 100%; height: {{iframeHeight}}px" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
</div>