mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
33 lines
1.3 KiB
Smarty
33 lines
1.3 KiB
Smarty
{*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************}
|
|
{* crmv@65455 crmv@69398 *}
|
|
|
|
<br>
|
|
<div style="width:100%" id="dimport_div_navigation">
|
|
<table border="0" cellspacing="0" cellpadding="0" width="100%">
|
|
<tr>
|
|
{if $USEREDIT}
|
|
<td align="right">
|
|
<input type="button" class="small crmbutton cancel" value="< {$APP.LBL_BACK}" title="{$APP.LBL_BACK}" onclick="DataImporter.gotoList()" />
|
|
</td>
|
|
{else}
|
|
<td align="left">
|
|
<input type="button" class="small crmbutton cancel" value="{$APP.LBL_CANCEL_BUTTON_LABEL}" title="{$APP.LBL_CANCEL_BUTTON_LABEL}" onclick="DataImporter.gotoList()" />
|
|
</td>
|
|
<td align="right">
|
|
{if $STEP > 1}
|
|
<input type="button" class="small crmbutton cancel" value="< {$APP.LBL_BACK}" title="{$APP.LBL_BACK}" onclick="DataImporter.gotoPrevStep()" />
|
|
{/if}
|
|
{if $STEP < $STEPS}
|
|
<input type="button" class="small crmbutton save" value="{$APP.LBL_FORWARD} >" title="{$APP.LBL_FORWARD}" onclick="DataImporter.gotoNextStep()" />
|
|
{elseif $STEP eq $STEPS}
|
|
<input type="button" class="small crmbutton save" value="{$APP.LBL_SAVE_LABEL}" title="{$APP.LBL_SAVE_LABEL}" onclick="DataImporter.saveImport()" />
|
|
{/if}
|
|
</td>
|
|
{/if}
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<br> |