commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / templates / CRM / Pledge / Form / Task / Print.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 <p>
27
28 {if $rows }
29 <div class="form-item">
30 <span class="element-right">{$form.buttons.html}</span>
31 </div>
32 <div class="spacer"></div>
33 <br />
34 <p>
35 <table>
36 <tr class="columnheader">
37 <th>{ts}Name{/ts}</th>
38 <th>{ts}Amount{/ts}</th>
39 <th>{ts}Create Date{/ts}</th>
40 <th>{ts}To Be Paid{/ts}</th>
41 <th>{ts}Begining Date{/ts}</th>
42 <th>{ts}Status{/ts}</th>
43 </tr>
44 {foreach from=$rows item=row}
45 <tr class="{cycle values="odd-row,even-row"}">
46 <td class="crm-pledge-sort_name" >{$row.sort_name}</td>
47 <td class="crm-pledge-pledge_amount">{$row.pledge_amount|crmMoney}</td>
48 <td class="crm-pledge-pledge_create_date">{$row.pledge_create_date|truncate:10:''|crmDate}</td>
49 <td class="crm-pledge-pledge_frequency_interval">{$row.pledge_frequency_interval} {$row.pledge_frequency_unit|capitalize:true}(s) </td>
50 <td class="crm-pledge-.pledge_start_date">{$row.pledge_start_date|truncate:10:''|crmDate}</td>
51 <td class="crm-pledge-pledge_status">{$row.pledge_status_id}</td>
52 </tr>
53 {/foreach}
54 </table>
55
56 <div class="form-item">
57 <span class="element-right">{$form.buttons.html}</span>
58 </div>
59
60 {else}
61 <div class="messages status no-popup">
62 <div class="icon inform-icon"></div>
63 {ts}There are no records selected for Print.{/ts}
64 </div>
65 {/if}