mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
38 lines
1.1 KiB
Smarty
38 lines
1.1 KiB
Smarty
{*
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
*}
|
|
|
|
{* crmv@3082m crmv@114260 *}
|
|
|
|
<table class="vtetable" id="account_list">
|
|
<thead>
|
|
<tr>
|
|
<th width="120">{'LBL_ACTIONS'|getTranslatedString}</th>
|
|
<th width="15%">Account</th>
|
|
<th>{'LBL_USERNAME'|getTranslatedString:'Settings'}</th>
|
|
<th>{'LBL_DESCRIPTION'|getTranslatedString}</th>
|
|
<th width="80">{'LBL_MAIN'|getTranslatedString:'Messages'}</th>
|
|
<th width="80">{'LBL_SMTP_SERVER'|getTranslatedString:'Messages'}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach item=ACCOUNT from=$ACCOUNTS}
|
|
{assign var=KEY value=$ACCOUNT.id}
|
|
{include file='modules/Messages/Settings/Account.tpl' ACCOUNT=$ACCOUNT}
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
|
|
<script type="text/javascript">
|
|
{if empty($ACCOUNTS)}
|
|
addAccount();
|
|
{/if}
|
|
{literal}
|
|
function addAccount() {
|
|
location.href='index.php?module=Messages&action=MessagesAjax&file=Settings/index&operation=EditAccount&id=';
|
|
}
|
|
{/literal}
|
|
</script> |