]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Connectors/tpls/mapping_properties.tpl
Release 6.5.0
[Github/sugarcrm.git] / modules / Connectors / tpls / mapping_properties.tpl
1 {*
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37 *}
38 <div id="{$source_id}_add_tables" class="sources_table_div">
39 {foreach from=$display_data key=module item=data}
40
41 <table border="0">
42 <tr>
43 <td colspan="2"><span><font size="3">{sugar_translate label=$module}</font></span></td></tr>
44 <tr>
45 <td width="150px"><b>{$mod.LBL_CONNECTOR_FIELDS}</b></td>
46 <td><b>{$mod.LBL_MODULE_FIELDS}</b></td>
47 </tr>
48 </table>
49
50 <table border="0" name="{$module}" id="{$module}" class="mapping_table">
51 <tr>
52 <td colspan="2">
53 {foreach from=$data.field_keys key=field_id item=field}
54 {if $field_id != 'id'}
55 <div id="{$source_id}:{$module}:{$field}_div" style="width:500px; display:block; cursor:pointer">
56 <table border="0" cellpadding="1" cellspacing="1">
57 <tr>
58 <td width="150px">
59 {$field}
60 </td>
61 <td>
62 <select id="{$source_id}:{$module}:{$field_id}">
63 <option value="">---</option>
64 {foreach from=$data.available_fields key=available_field_id item=available_field}
65 <option value="{$available_field_id}" {if $data.field_mapping.$field_id == $available_field_id}SELECTED{/if}>{$available_field}</option>
66 {/foreach}
67 </select>
68 </td>
69 </tr>
70 </table>
71 </div>
72 {/if}
73 {/foreach}
74 </td>
75 </tr>
76 </table>
77
78 <hr/>
79 {/foreach}
80 </div>
81
82 {if $empty_mapping}
83 <h3>{$mod.ERROR_NO_SEARCHDEFS_DEFINED}</h3>
84 {/if}
85