Files
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

42 lines
1.9 KiB
Smarty

{*<!--
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*
********************************************************************************/
-->*}
{strip}
<div id="importRecordsContainer" class='modelContainer'>
<div class="modal-header">
<button data-dismiss="modal" class="close" title="{vtranslate('LBL_CLOSE')}">x</button>
<h3 id="importRecordHeader">{vtranslate('LBL_IMPORT_RECORDS', $MODULE)}</h3>
</div>
<form method="POST" action="index.php" enctype="multipart/form-data" id="ical_import" name="ical_import">
<input type="hidden" value="{$MODULE}" name="module">
<div name='importRecordsContent'>
<input type="hidden" value="Import" name="view">
<input type="hidden" value="importResult" name="mode">
<div class="modal-body tabbable">
<div class="tab-content massEditContent">
<table class="massEditTable table table-bordered">
<tr>
<td class="fieldLabel alignMiddle">{vtranslate('LBL_IMPORT_RECORDS', $MODULE)}</td>
<td class="fieldValue"><input type="file" data-validation-engine="validate[required]" id="import_file" name="import_file" class="small"></td>
</tr>
</table>
</div>
</div>
</div>
<div class="modal-footer">
<div class=" pull-right cancelLinkContainer">
<a class="cancelLink" type="reset" data-dismiss="modal">{vtranslate('LBL_CANCEL', $MODULE)}</a>
</div>
<button class="btn btn-success" type="submit" name="saveButton"><strong>{vtranslate('LBL_IMPORT', $MODULE)}</strong></button>
</div>
</form>
</div>
{/strip}