commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / templates / CRM / Price / Page / Option.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 4 or $action eq 8 and !$usedBy) and !$isReserved}
27 {include file="CRM/Price/Form/Option.tpl"}
28
29 {elseif $usedBy}
30 <div class='spacer'></div>
31 <div id="price_set_used_by" class="messages status no-popup">
32 <div class="icon inform-icon"></div>
33 {if $action eq 8}
34 {ts 1=$usedPriceSetTitle}Unable to delete the '%1' Price Field Option - it is currently in use by one or more active events or contribution pages or contributions.{/ts}
35 {/if}
36
37 {if $usedBy.civicrm_event or $usedBy.civicrm_contribution_page}
38 {include file="CRM/Price/Page/table.tpl"}
39 {/if}
40
41 </div>
42 {else}
43
44
45 {if $customOption}
46
47 <div id="field_page">
48 <p></p>
49 {strip}
50 {* handle enable/disable actions*}
51 {include file="CRM/common/enableDisableApi.tpl"}
52 <table id="options" class="row-highlight">
53 <thead>
54 <tr>
55 <th>{ts}Option Label{/ts}</th>
56 <th>{ts}Option Amount{/ts}</th>
57 <th>{ts}Default{/ts}</th>
58 <th>{ts}Financial Type{/ts}</th>
59 <th>{ts}Order{/ts}</th>
60 {if $getTaxDetails}
61 <th>{ts}Tax Label{/ts}</th>
62 <th>{ts}Tax Amount{/ts}</th>
63 {/if}
64 <th>{ts}Enabled?{/ts}</th>
65 <th></th>
66 </tr>
67 </thead>
68 <tbody>
69 {foreach from=$customOption item=row}
70 <tr id="price_field_value-{$row.id}" class="crm-entity {cycle values="odd-row,even-row"} {$row.class}{if NOT $row.is_active} disabled{/if}">
71 <td class="crm-price-option-label crm-editable" data-field="label">{$row.label}</td>
72 <td class="crm-price-option-value">{$row.amount|crmMoney}</td>
73 <td class="crm-price-option-is_default">{if $row.is_default}<img src="{$config->resourceBase}i/check.gif" alt="{ts}Default{/ts}" />{/if}</td>
74 <td class="nowrap crm-price-option-financial-type-id">{$row.financial_type_id}</td>
75 <td class="nowrap crm-price-option-order">{$row.weight}</td>
76 {if $getTaxDetails}
77 <td>{if $row.tax_rate != '' }
78 {$taxTerm} ({$row.tax_rate|string_format:"%.2f"}%)
79 {/if}
80 </td>
81 <td>{$row.tax_amount|crmMoney}</td>
82 {/if}
83 <td id="row_{$row.id}_status" class="crm-price-option-is_active">{if $row.is_active eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if}</td>
84 <td>{$row.action|replace:'xx':$row.id}</td>
85 </tr>
86 {/foreach}
87 </tbody>
88 </table>
89 {/strip}
90 </div>
91
92 {else}
93 {if $action eq 16}
94 <div class="messages status no-popup">
95 <img src="{$config->resourceBase}i/Inform.gif" alt="{ts}status{/ts}"/>
96 {ts}None found.{/ts}
97 </div>
98 {/if}
99 {/if}
100 {if $addMoreFields && !$isReserved}
101 <div class="action-link">
102 {crmButton q="reset=1&action=add&fid=$fid&sid=$sid" icon="circle-plus"}{ts 1=$fieldTitle}New Option for '%1'{/ts}{/crmButton}
103 {crmButton p="civicrm/admin/price/field" q="reset=1&sid=$sid" class="cancel" icon="close"}{ts}Done{/ts}{/crmButton}
104 </div>
105 {/if}
106 {/if}