mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
32 lines
1.3 KiB
Smarty
32 lines
1.3 KiB
Smarty
{*
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
*}
|
|
<table width="100%" cellpadding="5" cellspacing="0" class="listTable">
|
|
<tr>
|
|
<td class="colHeader small" width="5%">#</td>
|
|
<td class="colHeader small" width="35%">{$MOD.LBL_NOTIFICATION}</td>
|
|
<td class="colHeader small" width="50%">{$MOD.LBL_DESCRIPTION}</td>
|
|
<td class="colHeader small" width="10%">{$MOD.LBL_STATUS}</td>
|
|
<td class="colHeader small" width="10%">{$MOD.LBL_TOOL}</td>
|
|
</tr>
|
|
{foreach name=notifyfor item=elements from=$NOTIFICATION}
|
|
<tr>
|
|
<td class="listTableRow small">{$smarty.foreach.notifyfor.iteration}</td>
|
|
<td class="listTableRow small">{$elements.label}</td>
|
|
<td class="listTableRow small">{$elements.schedulename}</td>
|
|
{if $elements.active eq 'Active'}
|
|
<td class="listTableRow small active">{$elements.active}</td>
|
|
{else}
|
|
<td class="listTableRow small inactive">{$elements.active}</td>
|
|
{/if}
|
|
<td class="listTableRow small"><img
|
|
onClick="fnvshobj(this,'editdiv');fetchEditNotify('{$smarty.foreach.notifyfor.iteration}');"
|
|
style="cursor:pointer;" src="{'editfield.gif'|resourcever}" title="{$APP.LBL_EDIT}"
|
|
alt="{$APP.LBL_EDIT}"></td>
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|