Merge pull request #5935 from totten/4.6-ext-inst-err
[civicrm-core.git] / templates / CRM / Admin / Form / RelationshipType.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
39de6fd5 3 | CiviCRM version 4.6 |
6a488035 4 +--------------------------------------------------------------------+
e7112fa7 5 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
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{* this template is used for adding/editing relationship types *}
6a488035 27<div class="crm-block crm-form-block crm-relationship-type-form-block">
52395565 28 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
6a488035
TO
29 {if $action eq 8}
30 <div class="messages status no-popup">
31 <div class="icon inform-icon"></div>
32 {ts}WARNING: Deleting this option will result in the loss of all Relationship records of this type.{/ts} {ts}This may mean the loss of a substantial amount of data, and the action cannot be undone.{/ts} {ts}Do you want to continue?{/ts}
33
34
35 </div>
36 {else}
37 <table class="form-layout-compressed">
38 <tr class="crm-relationship-type-form-block-label_a_b">
39 <td class="label">{$form.label_a_b.label}</td>
40 <td>{$form.label_a_b.html}<br />
41 <span class="description">{ts}Label for the relationship from Contact A to Contact B. EXAMPLE: Contact A is 'Parent of' Contact B.{/ts}</span></td>
42 </tr>
43 <tr class="crm-relationship-type-form-block-label_b_a">
44 <td class="label">{$form.label_b_a.label}</td>
45 <td>{$form.label_b_a.html}<br />
46 <span class="description">{ts}Label for the relationship from Contact B to Contact A. EXAMPLE: Contact B is 'Child of' Contact A. You may leave this blank for relationships where the name is the same in both directions (e.g. Spouse).{/ts}</span></td>
47 </tr>
48 <tr class="crm-relationship-type-form-block-contact_types_a">
49 <td class="label">{$form.contact_types_a.label}</td>
50 <td>{$form.contact_types_a.html}</td>
51 </tr>
52 <tr class="crm-relationship-type-form-block-contact_types_b">
53 <td class="label">{$form.contact_types_b.label}</td>
54 <td>{$form.contact_types_b.html}</td>
55 </tr>
56 <tr class="crm-relationship-type-form-block-description">
57 <td class="label">{$form.description.label}</td>
58 <td>{$form.description.html}</td>
59 </tr>
60 <tr class="crm-relationship-type-form-block-is_active">
61 <td class="label">{$form.is_active.label}</td>
62 <td>{$form.is_active.html}</td>
63 </tr>
64 </table>
65 {/if}
52395565 66 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
6a488035 67</div>