]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Import/tpls/dupcheck.tpl
Release 6.5.0
[Github/sugarcrm.git] / modules / Import / tpls / dupcheck.tpl
1 {*
2
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39
40
41 *}
42 {literal}
43 <style>
44 <!--
45
46 #DupeCheck{
47     border: none;
48     box-shadow:none;
49 }
50
51 #selected_indices
52 {
53     padding-left:30px;
54     padding-right:30px;
55 }
56
57
58 -->
59 </style>
60 {/literal}
61
62 {$INSTRUCTION}
63 <form enctype="multipart/form-data" real_id="importstepdup" id="importstepdup" name="importstepdup" method="POST" action="index.php">
64
65 {foreach from=$smarty.request key=k item=v}
66     {if $k neq 'current_step'}
67         {if is_array($v)}
68             {foreach from=$v key=k1 item=v1}
69                 <input type="hidden" name="{$k}[]" value="{$v1}">
70             {/foreach}
71         {else}
72             <input type="hidden" name="{$k}" value="{$v}">
73         {/if}
74     {/if}
75 {/foreach}
76
77 <input type="hidden" name="module" value="Import">
78 <input type="hidden" name="import_type" value="{$smarty.request.import_type}">
79 <input type="hidden" name="type" value="{$smarty.request.type}">
80 <input type="hidden" name="file_name" value="{$smarty.request.tmp_file}">
81 <input type="hidden" name="source_id" value="{$SOURCE_ID}">
82 <input type="hidden" name="to_pdf" value="1">
83 <input type="hidden" name="display_tabs_def">
84 <input type="hidden" id="enabled_dupes" name="enabled_dupes" value="">
85 <input type="hidden" id="disabled_dupes" name="disabled_dupes" value="">
86 <input type="hidden" id="current_step" name="current_step" value="{$CURRENT_STEP}">
87
88    <div class="hr"></div>
89     <div>
90     <table border="0" cellpadding="30" id="importTable" style="width:60% !important;">
91     <tr>
92         <td  width="40%" colspan="2">
93            <table id="DupeCheck" class="themeSettings edit view noBorder" style='margin-bottom:0px;' border="0" cellspacing="10" cellpadding="0"  width = '100%'>
94                 <tr>
95                     <td align="right">
96                         <div id="enabled_div" class="enabled_tab_workarea">
97                         </div>
98                     </td>
99                     <td align="left">
100                         <div id="disabled_div" class="disabled_tab_workarea">
101                         </div>
102                     </td>
103                 </tr>
104             </table>
105         </td>
106     </tr>
107     </table>
108      <div class="hr"></div>
109     <span><strong><label for="save_map_as">{$MOD.LBL_SAVE_MAPPING_AS}</label></strong> {sugar_help text=$MOD.LBL_SAVE_MAPPING_HELP}</span>
110             <span >
111                 <input type="text" name="save_map_as" id="save_map_as" value="" style="width: 20em" maxlength="254">
112             </span>
113     </div>
114 <br />
115
116 <table width="100%" cellpadding="2" cellspacing="0" border="0">
117     <tr>
118         <td align="left">
119             <input title="{$MOD.LBL_BACK}"  id="goback" class="button" type="submit" name="button" value="  {$MOD.LBL_BACK}  ">&nbsp;
120             <input title="{$MOD.LBL_IMPORT_NOW}"  id="importnow" class="button" type="button" name="button" value="  {$MOD.LBL_IMPORT_NOW}  ">
121         </td>
122     </tr>
123 </table>
124 </form>
125
126