Merge remote-tracking branch 'upstream/4.3' into 4.3-master-2013-08-28-20-20-34
[civicrm-core.git] / templates / CRM / Contact / Form / Edit / TagsAndGroups.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
232624b1 3 | CiviCRM version 4.4 |
6a488035
TO
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2013 |
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25*}
26{if $title}
27<div class="crm-accordion-wrapper crm-tagGroup-accordion collapsed">
4cb067fe 28 <div class="crm-accordion-header">{$title}</div>
6a488035
TO
29 <div class="crm-accordion-body" id="tagGroup">
30{/if}
31 <table class="form-layout-compressed{if $context EQ 'profile'} crm-profile-tagsandgroups{/if}">
4cb067fe 32 <tr>
c18f95b7
PJ
33 {if $groupElementType eq 'crmasmSelect'}
34 <td><span class="label">{if $title}{$form.group.label}{/if}</span>
35 {$form.group.html}
36 {literal}
37 <script type="text/javascript">
4bb8711e 38 cj(function(){
c18f95b7
PJ
39 cj("select#group").crmasmSelect({
40 respectParents: true
41 });
4bb8711e 42 });
c18f95b7
PJ
43 </script>
44 {/literal}
4bb8711e 45 </td>
c18f95b7 46 {/if}
6a488035 47 {foreach key=key item=item from=$tagGroup}
4cb067fe
CW
48 {* $type assigned from dynamic.tpl *}
49 {if !$type || $type eq $key }
50 <td width={cycle name=tdWidth values="70%","30%"}><span class="label">{if $title}{$form.$key.label}{/if}</span>
51 <div id="crm-tagListWrap">
52 <table id="crm-tagGroupTable">
53 {foreach key=k item=it from=$form.$key}
54 {if $k|is_numeric}
55 <tr class={cycle values="'odd-row','even-row'" name=$key} id="crm-tagRow{$k}">
56 <td>
57 <strong>{$it.html}</strong><br />
58 {if $item.$k.description}
59 <div class="description">
60 {$item.$k.description}
61 </div>
62 {/if}
63 </td>
64 </tr>
65 {/if}
66 {/foreach}
67 </table>
68 </div>
69 </td>
70 {/if}
6a488035 71 {/foreach}
4cb067fe 72 </tr>
d9f679be
CW
73 {if !$type || $type eq 'tag'}
74 <tr><td>{include file="CRM/common/Tag.tpl"}</td></tr>
75 {/if}
4cb067fe 76 </table>
6a488035 77{if $title}
4cb067fe 78 </div>
6a488035 79</div><!-- /.crm-accordion-wrapper -->
6a488035 80{/if}