Files
CRM/layouts/vlayout/modules/Settings/MailConverter/Step2.tpl
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

46 lines
2.2 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 class="pull-left" style="margin-left: 85px; color: #FF0000;">
<strong>
{if $IMAP_ERROR}
{$IMAP_ERROR}
{else if $CONNECTION_ERROR}
{vtranslate('LBL_CONNECTION_ERROR',$QUALIFIED_MODULE)}
{/if}
</strong>
</div>
<div class="span9 addMailBoxBlock">
<h3 style="">{vtranslate('SELECT_FOLDERS', $QUALIFIED_MODULE)}</h3>
<br>
<div class="row-fluid padding-bottom1per">
<div id="mailConverterDragIcon"><i class="icon-info-sign"></i>&nbsp;&nbsp;{vtranslate('TO_CHANGE_THE_FOLDER_SELECTION_DESELECT_ANY_OF_THE_SELECTED_FOLDERS',$QUALIFIED_MODULE)}</div>
</div>
<br>
<form class="form-horizontal" id="mailBoxEditView" name="step2">
<div class="addMailBoxStep">
{foreach key=FOLDER item=SELECTED from=$FOLDERS}
<div class="span3">
<input type="checkbox" name="folders" value="{$FOLDER}" {if $SELECTED eq 'checked'}checked{/if}>
&nbsp;&nbsp;&nbsp;{$FOLDER}
</div>
{/foreach}
</div>
<div class="pull-right" style="margin-top: 20px;">
<button class="btn btn-danger backStep" type="button" onclick="javascript:window.history.back();"><strong>{vtranslate('LBL_BACK', $QUALIFIED_MODULE)}</strong></button>&nbsp;&nbsp;
<button class="btn btn-success" onclick="javascript:Settings_MailConverter_Edit_Js.secondStep()">
<strong>
{if $CREATE eq 'new'}{vtranslate('LBL_NEXT', $QUALIFIED_MODULE)}{else}{vtranslate('LBL_FINISH', $QUALIFIED_MODULE)}{/if}
</strong>
</button>
<a class="cancelLink" type="reset" onclick="javascript:window.history.go(-2);">{vtranslate('LBL_CANCEL', $QUALIFIED_MODULE)}</a>
</div>
</form>
</div>
{/strip}