mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
37 lines
1.2 KiB
Smarty
37 lines
1.2 KiB
Smarty
{*
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
*}
|
|
<script language="JavaScript" type="text/javascript" src="include/js/jquery.js"></script>
|
|
<script type="text/javascript" charset="utf-8">
|
|
jQuery.noConflict();
|
|
</script>
|
|
<script language="JavaScript" type="text/javascript" src="modules/Import/resources/Import.js"></script>
|
|
|
|
<input type="hidden" name="module" value="{$FOR_MODULE}" />
|
|
<table style="width:70%;margin-left:auto;margin-right:auto;margin-top:10px;" cellpadding="10" cellspacing="10" class="searchUIBasic">
|
|
<tr>
|
|
<td class="heading2" align="left" colspan="2">
|
|
{'LBL_IMPORT'|@getTranslatedString:$MODULE} {$FOR_MODULE|@getTranslatedString:$FOR_MODULE} - {'LBL_RESULT'|@getTranslatedString:$MODULE}
|
|
</td>
|
|
</tr>
|
|
{if $ERROR_MESSAGE neq ''}
|
|
<tr>
|
|
<td class="style1" align="left" colspan="2">
|
|
{$ERROR_MESSAGE}
|
|
</td>
|
|
</tr>
|
|
{/if}
|
|
<tr>
|
|
<td valign="top">
|
|
{include file="modules/Import/Import_Result_Details.tpl"}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right" colspan="2">
|
|
{include file='modules/Import/Import_Finish_Buttons.tpl'}
|
|
</td>
|
|
</tr>
|
|
</table> |