mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-27 16:48:47 +00:00
41 lines
1.3 KiB
Smarty
41 lines
1.3 KiB
Smarty
{*
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
*}
|
|
{* crmv@160837 *}
|
|
|
|
{include file="SmallHeader.tpl"}
|
|
|
|
<script src="{"modules/Settings/ProcessMaker/resources/ActionTaskScript.js"|resourcever}" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<table border="0" cellpadding="2" cellspacing="0" width="100%">
|
|
<tr>
|
|
<td align=right width=15% nowrap="nowrap">
|
|
{include file="FieldHeader.tpl" mandatory=true label=$MOD.LBL_ENTITY}
|
|
</td>
|
|
<td align="left">
|
|
<div class="dvtCellInfo">
|
|
<select name="record_involved" class="detailedViewTextBox" onchange="ProcessHelperScript.loadModuleBlocks({$ID},'{$ELEMENTID}',this.value);">
|
|
{foreach key=k item=i from=$RECORDS_INVOLVED}
|
|
{* crmv@135190 *}
|
|
{if isset($i.group)}
|
|
<optgroup label="{$i.group}">
|
|
{foreach key=kk item=ii from=$i.values}
|
|
<option value="{$kk}" {$ii.1}>{$ii.0}</option>
|
|
{/foreach}
|
|
</optgroup>
|
|
{else}
|
|
<option value="{$k}" {$i.1}>{$i.0}</option>
|
|
{/if}
|
|
{* crmv@135190e *}
|
|
{/foreach}
|
|
</select>
|
|
</div>
|
|
</td>
|
|
<td align=right width=15% nowrap="nowrap"> </td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div id="blocks_container"></div> |