mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
37 lines
1.2 KiB
Smarty
37 lines
1.2 KiB
Smarty
{*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************}
|
|
{* crmv@82419 crmv@99315 crmv@191935 *}
|
|
|
|
{* modal dialog that replaces alerts *}
|
|
<div id="alert-dialog" class="modal fade" tabindex="-1">
|
|
<div class="modal-dialog modal-sm">
|
|
<div class="modal-content">
|
|
<div class="modal-body">
|
|
<p id="alert-dialog-content"></p>
|
|
</div>
|
|
<div class="hidden modal-footer">
|
|
<button class="btn btn-primary btn-ok" data-dismiss="modal">OK</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{* modal dialog that replaces confirms *}
|
|
<div id="confirm-dialog" class="modal fade" tabindex="-1">
|
|
<div class="modal-dialog modal-sm">
|
|
<div class="modal-content">
|
|
<div class="modal-body">
|
|
<p id="confirm-dialog-content"></p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
{* crmv@180014 *}
|
|
<button class="btn btn-primary btn-exit" msg="exit" style="display:none">{$APP.LBL_CANCEL_BUTTON_LABEL}</button> {* crmv@150751 *}
|
|
<button class="btn btn-primary btn-cancel" msg="cancel">{$APP.LBL_CANCEL_BUTTON_LABEL}</button>
|
|
<button class="btn btn-primary btn-ok" msg="ok">OK</button>
|
|
{* crmv@180014e *}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |