]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/ModuleBuilder/tpls/Preview/listView.tpl
Release 6.4.0
[Github/sugarcrm.git] / modules / ModuleBuilder / tpls / Preview / listView.tpl
1 {*
2
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 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 <link rel="stylesheet" type="text/css" href="modules/ModuleBuilder/tpls/ListEditor.css" />
42 <table class="preview-content">
43 <td>
44
45 {counter start=0 name="groupCounter" print=false assign="groupCounter"}
46 {foreach from=$groups key='label' item='list'}
47         {counter name="groupCounter"}
48 {/foreach}
49 {math assign="groupWidth" equation="100/$groupCounter-5"}
50
51 {counter start=0 name="slotCounter" print=false assign="slotCounter"}
52 {counter start=0 name="modCounter" print=false assign="modCounter"}
53
54 {foreach from=$groups key='label' item='list'}
55
56 <div style="float: left; border: 1px gray solid; padding:4px; margin-right:4px; margin-top: 8px; width:{$groupWidth}%;">
57 <h3 >{$label}</h3>
58 <ul>
59
60 {foreach from=$list key='key' item='value'}
61
62 <li name="width={$value.width}%" class='draggable' style='cursor:default;'>
63     <table width='100%'>
64         <tr>
65                 <td style="font-weight: bold;">{if !empty($value.label)}{sugar_translate label=$value.label module=$language}{else}{$key}{/if}</td>
66                 <td>
67                 {* BEGIN SUGARCRM flav=pro ONLY *}
68                 {if isset($field_defs.$key.calculated) && $field_defs.$key.calculated}
69                     {sugar_getimage name="SugarLogic/icon_calculated" alt=$mod_strings.LBL_CALCULATED ext=".png" other_attributes=''}
70                 {/if}
71                 {if isset($field_defs.$key.dependency) && $field_defs.$key.dependency}
72                     {sugar_getimage name="SugarLogic/icon_dependent" alt=$mod_strings.LBL_DEPENDANT ext=".png" other_attributes=''}
73                 {/if}
74                 {* END SUGARCRM flav=pro ONLY *}
75                 </td>
76         </tr>
77         <tr class='fieldValue' style='cursor:default;'>
78                 {if empty($hideKeys)}<td>[{$key}]</td>{/if}
79                 <td align="right" colspan="2"><span>{$value.width}</span><span>%</span></td>
80         </tr>
81     </table>
82 </li>
83 {counter name="modCounter"}
84 {/foreach}
85
86 <li class='noBullet'>&nbsp;</li>
87
88 </ul>
89 </div>
90
91 {counter name="slotCounter"}
92 {/foreach}
93 </td>
94 </tr></table>
95
96