102 lines
5.1 KiB
Smarty
102 lines
5.1 KiB
Smarty
|
{*
|
||
|
+--------------------------------------------------------------------+
|
||
|
| CiviCRM version 4.7 |
|
||
|
+--------------------------------------------------------------------+
|
||
|
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||
|
+--------------------------------------------------------------------+
|
||
|
| This file is a part of CiviCRM. |
|
||
|
| |
|
||
|
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||
|
| under the terms of the GNU Affero General Public License |
|
||
|
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||
|
| |
|
||
|
| CiviCRM is distributed in the hope that it will be useful, but |
|
||
|
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||
|
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||
|
| See the GNU Affero General Public License for more details. |
|
||
|
| |
|
||
|
| You should have received a copy of the GNU Affero General Public |
|
||
|
| License and the CiviCRM Licensing Exception along |
|
||
|
| with this program; if not, contact CiviCRM LLC |
|
||
|
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||
|
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||
|
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||
|
+--------------------------------------------------------------------+
|
||
|
*}
|
||
|
{if $context eq 'user'}
|
||
|
<div class="view-content">
|
||
|
{if $pledge_rows}
|
||
|
{strip}
|
||
|
<table class="selector">
|
||
|
<tr class="columnheader">
|
||
|
{foreach from=$pledge_columnHeaders item=header}
|
||
|
<th>{$header.name}</th>
|
||
|
{/foreach}
|
||
|
</tr>
|
||
|
{counter start=0 skip=1 print=false}
|
||
|
{foreach from=$pledge_rows item=row}
|
||
|
<tr id='rowid{$row.pledge_id}' class="{cycle values="odd-row,even-row"} {if $row.pledge_status_name eq 'Overdue' } disabled{/if} crm-pledge crm-pledge_{$row.pledge_id} ">
|
||
|
<td class="crm-pledge-pledge_amount">{$row.pledge_amount|crmMoney:$row.pledge_currency}</td>
|
||
|
<td class="crm-pledge-pledge_total_paid">{$row.pledge_total_paid|crmMoney:$row.pledge_currency}</td>
|
||
|
<td class="crm-pledge-pledge_amount">{$row.pledge_amount-$row.pledge_total_paid|crmMoney:$row.pledge_currency}</td>
|
||
|
<td class="crm-pledge-pledge_contribution_type">{$row.pledge_financial_type}</td>
|
||
|
<td class="crm-pledge-pledge_create_date">{$row.pledge_create_date|truncate:10:''|crmDate}</td>
|
||
|
<td class="crm-pledge-pledge_next_pay_date">{$row.pledge_next_pay_date|truncate:10:''|crmDate}</td>
|
||
|
<td class="crm-pledge-pledge_next_pay_amount">{$row.pledge_next_pay_amount|crmMoney:$row.pledge_currency}</td>
|
||
|
<td class="crm-pledge-pledge_status crm-pledge-pledge_status_{$row.pledge_status}">{$row.pledge_status}</td>
|
||
|
<td>
|
||
|
{if $row.pledge_contribution_page_id and ($row.pledge_status_name neq 'Completed') and ( $row.contact_id eq $loggedUserID ) }
|
||
|
<a href="{crmURL p='civicrm/contribute/transact' q="reset=1&id=`$row.pledge_contribution_page_id`&pledgeId=`$row.pledge_id`"}">{ts}Make Payment{/ts}</a><br/>
|
||
|
{/if}
|
||
|
<a class="crm-expand-row" title="{ts}view payments{/ts}" href="{crmURL p='civicrm/pledge/payment' q="action=browse&context=`$context`&pledgeId=`$row.pledge_id`&cid=`$row.contact_id`"}">{ts}Payments{/ts}</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{/foreach}
|
||
|
</table>
|
||
|
{/strip}
|
||
|
{crmScript file='js/crm.expandRow.js'}
|
||
|
{else}
|
||
|
<div class="messages status no-popup">
|
||
|
<div class="icon inform-icon"></div>
|
||
|
{ts}There are no Pledges for your record.{/ts}
|
||
|
</div>
|
||
|
{/if}
|
||
|
{*pledge row if*}
|
||
|
|
||
|
{*Display honor block*}
|
||
|
{if $pledgeHonor && $pledgeHonorRows}
|
||
|
{strip}
|
||
|
<div class="help">
|
||
|
<p>{ts}Pledges made in your honor.{/ts}</p>
|
||
|
</div>
|
||
|
<table class="selector">
|
||
|
<tr class="columnheader">
|
||
|
<th>{ts}Pledger{/ts}</th>
|
||
|
<th>{ts}Amount{/ts}</th>
|
||
|
<th>{ts}Type{/ts}</th>
|
||
|
<th>{ts}Financial Type{/ts}</th>
|
||
|
<th>{ts}Create date{/ts}</th>
|
||
|
<th>{ts}Acknowledgment Sent{/ts}</th>
|
||
|
<th>{ts}Acknowledgment Date{/ts}</th>
|
||
|
<th>{ts}Status{/ts}</th>
|
||
|
<th></th>
|
||
|
</tr>
|
||
|
{foreach from=$pledgeHonorRows item=row}
|
||
|
<tr id='rowid{$row.honorId}' class="{cycle values="odd-row,even-row"}">
|
||
|
<td class="crm-pledge-display_name"><a href="{crmURL p="civicrm/contact/view" q="reset=1&cid=`$row.honorId`"}" id="view_contact">{$row.display_name}</a></td>
|
||
|
<td class="crm-pledge-amount">{$row.amount|crmMoney:$row.pledge_currency}</td>
|
||
|
<td class="crm-pledge-honor-type">{$row.honor_type}</td>
|
||
|
<td class="crm-pledge-type">{$row.type}</td>
|
||
|
<td class="crm-pledge-create_date">{$row.create_date|truncate:10:''|crmDate}</td>
|
||
|
<td align="center">{if $row.acknowledge_date}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}</td>
|
||
|
<td class="crm-pledge-acknowledge_date">{$row.acknowledge_date|truncate:10:''|crmDate}</td>
|
||
|
<td class="crm-pledge-status">{$row.status}</td>
|
||
|
</tr>
|
||
|
{/foreach}
|
||
|
</table>
|
||
|
{/strip}
|
||
|
{/if}
|
||
|
</div>
|
||
|
{* main if close*}
|
||
|
{/if}
|