Merge pull request #2266 from yashodha/4.4.CRM-13977
[civicrm-core.git] / templates / CRM / Contact / Form / Edit / TagsAndGroups.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.4 |
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">
28 <div class="crm-accordion-header">{$title}</div>
29 <div class="crm-accordion-body" id="tagGroup">
30 {/if}
31 <table class="form-layout-compressed{if $context EQ 'profile'} crm-profile-tagsandgroups{/if}">
32 <tr>
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">
38 cj(function(){
39 cj("select#group").crmasmSelect({
40 respectParents: true
41 });
42 });
43 </script>
44 {/literal}
45 </td>
46 {/if}
47 {foreach key=key item=item from=$tagGroup}
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}
71 {/foreach}
72 </tr>
73 {if !$type || $type eq 'tag'}
74 <tr><td>{include file="CRM/common/Tag.tpl"}</td></tr>
75 {/if}
76 </table>
77 {if $title}
78 </div>
79 </div><!-- /.crm-accordion-wrapper -->
80 {/if}