commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / templates / CRM / Admin / Page / ContactType.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.6 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2015 |
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 $action eq 1 or $action eq 2 or $action eq 8}
27 {include file="CRM/Admin/Form/ContactType.tpl"}
28 {else}
29
30 <div id="help">
31 {ts}CiviCRM comes with 3 basic (built-in) contact types: Individual, Household, and Organization. You can create additional contact types based on these types to further differentiate contacts (for example you might create Student, Parent, Staff, and /or Volunteer types from the basic Individual type...).{/ts} {help id="id-contactSubtype-intro"}
32 </div>
33 {if $rows}
34 <div>
35 {strip}
36 {* handle enable/disable actions*}
37 {include file="CRM/common/enableDisableApi.tpl"}
38 {include file="CRM/common/jsortable.tpl"}
39 <table id="options" class="display">
40 <thead>
41 <tr>
42 <th>{ts}Contact Type{/ts}</th>
43 <th>{ts}Based On{/ts}</th>
44 <th id="nosort">{ts}Description{/ts}</th>
45 <th></th>
46 </tr>
47 </thead>
48 {foreach from=$rows item=row}
49 <tr id="contact_type-{$row.id}" class="{cycle values="odd-row,even-row"} {$row.class} crm-contactType crm-entity {if NOT $row.is_active} disabled{/if}">
50 <td class="crm-contactType-label crm-editable" data-field="label">{ts}{$row.label}{/ts}</td>
51 <td class="crm-contactType-parent">{if $row.parent}{ts}{$row.parent_label}{/ts}{else}{ts}(built-in){/ts}{/if}</td>
52 <td class="crm-contactType-description crm-editable" data-field="description" data-type="textarea">{$row.description}</td>
53 <td>{$row.action|replace:'xx':$row.id}</td>
54 </tr>
55 {/foreach}
56 </table>
57 {/strip}
58 </div>
59 {else}
60 <div class="messages status no-popup">
61 <img src="{$config->resourceBase}i/Inform.gif" alt="{ts}status{/ts}"/>
62 {ts}None found.{/ts}
63 </div>
64 {/if}
65 <div class="action-link">
66 {crmButton q="action=add&reset=1" icon="circle-plus"}{ts}Add Contact Type{/ts}{/crmButton}
67 {crmButton p="civicrm/admin" q="reset=1" class="cancel" icon="close"}{ts}Done{/ts}{/crmButton}
68 </div>
69 {/if}