commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / templates / CRM / Financial / Form / FinancialAccount.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 {* this template is used for adding/editing/deleting financial type *}
27 <div class="crm-block crm-form-block crm-contribution_type-form-block crm-financial_type-form-block">
28 {if $action eq 8}
29 <div class="messages status no-popup">
30 <div class="icon inform-icon"></div>
31 {ts}WARNING: You cannot delete a {$delName} Financial Account if it is currently used by any Financial Types. Consider disabling this option instead.{/ts} {ts}Deleting a financial type cannot be undone.{/ts} {ts}Do you want to continue?{/ts}
32 </div>
33 {else}
34 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
35 <table class="form-layout-compressed">
36 <tr class="crm-contribution-form-block-name">
37 <td class="label">{$form.name.label}</td>
38 <td class="html-adjust">{$form.name.html}</td>
39 </tr>
40 <tr class="crm-contribution-form-block-description">
41 <td class="label">{$form.description.label}</td>
42 <td class="html-adjust">{$form.description.html}</td>
43 </tr>
44 <tr class="crm-contribution-form-block-organisation_name">
45 <td class="label">{$form.contact_id.label}&nbsp;{help id="id-financial-owner" file="CRM/Contact/Form/Contact.hlp"}</td>
46 <td class="html-adjust">{$form.contact_id.html}<br />
47 <span class="description">{ts}Use this field to indicate the organization that owns this account.{/ts}</span>
48 </td>
49 </tr>
50 <tr class="crm-contribution-form-block-financial_account_type_id">
51 <td class="label">{$form.financial_account_type_id.label}</td>
52 <td class="html-adjust">{$form.financial_account_type_id.html}</td>
53 </tr>
54 <tr class="crm-contribution-form-block-accounting_code">
55 <td class="label">{$form.accounting_code.label}</td>
56 <td class="html-adjust">{$form.accounting_code.html}<br />
57 <span class="description">{ts}Enter the corresponding account code used in your accounting system. This code will be available for contribution export, and included in accounting batch exports.{/ts}</span>
58 </td>
59 </tr>
60 <tr class="crm-contribution-form-block-account_type_code">
61 <td class="label">{$form.account_type_code.label}</td>
62 <td class="html-adjust">{$form.account_type_code.html}<br />
63 <span class="description">{ts}Enter an account type code for this account. Account type codes are required for QuickBooks integration and will be included in all accounting batch exports.{/ts}</span>
64 </td>
65 </tr>
66 <tr class="crm-contribution-form-block-is_deductible">
67 <td class="label">{$form.is_deductible.label}</td>
68 <td class="html-adjust">{$form.is_deductible.html}<br />
69 <span class="description">{ts}Are monies received into this account tax-deductible?{/ts}</span>
70 </td>
71 </tr>
72 <tr class="crm-contribution-form-block-is_active">
73 <td class="label">{$form.is_active.label}</td>
74 <td class="html-adjust">{$form.is_active.html}</td>
75 </tr>
76 <tr class="crm-contribution-form-block-is_tax">
77 <td class="label">{$form.is_tax.label}</td>
78 <td class="html-adjust">{$form.is_tax.html}<br />
79 <span class="description">{ts}Does this account hold taxes collected?{/ts}</span>
80 </td>
81 </tr>
82 <tr class="crm-contribution-form-block-tax_rate">
83 <td class="label">{$form.tax_rate.label}</td>
84 <td class="html-adjust">{$form.tax_rate.html}<br />
85 <span class="description">{ts}The default rate used to calculate the taxes collected into this account (e.g. for tax rate of 8.27%, enter 8.27).{/ts}</span>
86 </td>
87 </tr>
88 <tr class="crm-contribution-form-block-is_default">
89 <td class="label">{$form.is_default.label}</td>
90 <td class="html-adjust">{$form.is_default.html}<br />
91 <span class="description">{ts}Is this account to be used as the default account for its financial account type when associating financial accounts with financial types?{/ts}</span>
92 </td>
93 </tr>
94 </table>
95 {/if}
96 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="botttom"}</div>
97 </div>