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/frontend/client/res/templates/admin/index.tpl
T
2015-07-27 11:02:42 +03:00

24 lines
725 B
Smarty

<div class="page-header"><h3>{{translate 'Administration' scope='Admin'}}</h3></div>
<div class="row">
<div class="col-md-7">
{{#each links}}
<h4>{{translate label scope='Admin'}}</h4>
<table class="table table-bordered">
{{#each items}}
<tr>
<td width="200">
<a href="{{url}}">{{translate label scope='Admin' category='labels'}}</a>
</td>
<td>{{translate description scope='Admin' category='descriptions'}}</td>
</tr>
{{/each}}
</table>
{{/each}}
</div>
<div class="col-md-5">
<iframe src="{{iframeUrl}}" style="width: 100%; height: 840px;" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>