mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
74 lines
2.2 KiB
Smarty
74 lines
2.2 KiB
Smarty
{*
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
*}
|
|
|
|
{* crmv@80155 *}
|
|
|
|
<table class="vtetable vtetable-props">
|
|
<tbody>
|
|
<tr>
|
|
<td class="cellLabel">{'LBL_NAME'|getTranslatedString:'Settings'}</td>
|
|
<td class="cellText">{$TEMPLATENAME}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="cellLabel">{'LBL_DESCRIPTION'|getTranslatedString:'Settings'}</td>
|
|
<td class="cellText">{$DESCRIPTION}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="cellLabel">{'LBL_FOLDER'|getTranslatedString:'Settings'}</td>
|
|
<td class="cellText">{$FOLDERNAME}</td>
|
|
</tr>
|
|
{* crmv@22700 *}
|
|
<tr>
|
|
<td class="cellLabel">{'LBL_TYPE'|getTranslatedString}</td>
|
|
<td class="cellText">{$TEMPLATETYPE}</td>
|
|
</tr>
|
|
{* crmv@22700e *}
|
|
{if $TEMPLATETYPE eq 'Email'}
|
|
<tr>
|
|
<td class="cellLabel">{'LBL_USE_SIGNATURE'|getTranslatedString:'Settings'}</td>
|
|
<td class="cellText">
|
|
{if $USE_SIGNATURE eq 1}
|
|
<i class="vteicon checkok nohover">check</i>
|
|
{else}
|
|
<i class="vteicon checkko nohover">clear</i>
|
|
{/if}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="cellLabel">{'LBL_OVERWRITE_MESSAGE'|getTranslatedString:'Settings'}</td>
|
|
<td class="cellText">
|
|
{if $OVERWRITE_MESSAGE eq 1}
|
|
<i class="vteicon checkok nohover">check</i>
|
|
{else}
|
|
<i class="vteicon checkko nohover">clear</i>
|
|
{/if}
|
|
</td>
|
|
</tr>
|
|
{/if}
|
|
{if $BU_MC_ENABLED}
|
|
<tr>
|
|
<td class="cellLabel">Business Unit</td>
|
|
<td class="cellText">{$BU_MC}</td>
|
|
</tr>
|
|
{/if}
|
|
<tr>
|
|
<td class="cellLabel">{'LBL_SUBJECT'|getTranslatedString:'Settings'}</td>
|
|
<td class="cellText">{$SUBJECT}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="cellLabel">{'LBL_MESSAGE'|getTranslatedString:'Settings'}</td>
|
|
<td class="cellText">
|
|
{* crmv@153002 *}
|
|
<iframe src="index.php?module=Utilities&action=UtilitiesAjax&file=getEmailTemplateBody&templateid={$TEMPLATEID}&formodule={$MODULE}&forrecord={$ID}"
|
|
frameborder="0" scrolling="yes" marginheight="0" marginwidth="0" width="100%"
|
|
onload="this.style.height = this.contentWindow.document.body.scrollHeight + 'px';">
|
|
</iframe>
|
|
{* crmv@153002e *}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table> |