Merge remote-tracking branch 'upstream/4.4' into 4.4-4.5-2014-09-08-20-42-29
[civicrm-core.git] / templates / CRM / Contribute / Form / UpdateSubscription.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.5 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2014 |
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 <div class="crm-block crm-form-block crm-recurcontrib-form-block">
27 {if $isChangeSupported}
28 <div id="help">
29 {ts}Use this form to change the amount or number of installments for this recurring contribution. Changes will be automatically sent to the payment processor. You can not change the contribution frequency.{/ts}
30 </div>
31 {/if}
32 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
33 <table class="form-layout">
34 <tr>
35 <td class="label">{$form.amount.label}</td>
36 <td>{$form.currency.html|crmAddClass:eight}&nbsp;{$form.amount.html|crmAddClass:eight} ({ts}every{/ts} {$frequency_interval} {$frequency_unit})</td>
37 </tr>
38 <tr><td class="label">{$form.installments.label}</td><td>{$form.installments.html}<br />
39 <span class="description">{ts}Total number of payments to be made. Set this to 0 if this is an open-ended commitment i.e. no set end date.{/ts}</span></td></tr>
40 {if !$self_service}
41 <tr><td class="label">{$form.is_notify.label}</td><td>{$form.is_notify.html}</td></tr>
42 {/if}
43
44 {* Currently changes to interval, unit and cycle day are not supported. *}
45 {*
46 <tr><td class="label">{$form.frequency_interval.label}</td><td>{$form.frequency_interval.html}<br />
47 <span class="description">{ts}Number of time units for recurrence of payment.{/ts}</span></td></tr>
48 <tr><td class="label">{$form.frequency_unit.label}</td><td>{$form.frequency_unit.html}<br />
49 <span class="description">{ts}Time unit for recurrence of payment. For example, "month".{/ts}</span></td></tr>
50 <tr><td class="label">{$form.cycle_day.label}</td><td>{$form.cycle_day.html}<br />
51 <span class="description">{ts}Day in the period when the payment should be charged.{/ts}</span></td></tr>
52 *}
53 </table>
54
55 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
56 </div>