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/install/core/tpl/errors.tpl
T
Taras Machyshyn 2a76c828a0 installer changes
2014-03-28 17:37:32 +02:00

34 lines
803 B
Smarty

<header class="panel-heading">
<h4 class="panel-title">{$langs['Errors page title']}</h4>
</header>
<div class="panel-body body">
<div id="msg-box" class="alert alert-danger">{$errors}</div>
<div class="loading-icon hide"></div>
<form id="nav">
<div class="row">
<div class=" col-md-13">
<div class="panel-body" align="center">
</div>
</div>
</div>
</form>
</div>
<footer class="modal-footer">
<button class="btn btn-primary" type="button" id="re-check">{$langs['Re-check']}</button>
</footer>
<script>
{literal}
$(function(){
{/literal}
var opt = {
action: 'errors',
langs: {$langsJs},
ajaxUrls: {$ajaxUrls},
modRewriteUrl: '{$modRewriteUrl}',
serverType: '{$serverType}'
}
{literal}
var installScript = new InstallScript(opt);
})
{/literal}
</script>