Файл: upload/module/friend/template/default/controller/invoice.html.php
Строк: 35
<?php
/**
* [PHPFOX_HEADER]
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Miguel Espinoza
* @package Phpfox
* @version $Id: controller.html.php 64 2009-01-19 15:05:54Z Raymond_Benc $
*/
defined('PHPFOX') or exit('NO DICE!');
?>
{if !count($aInvoices)}
<div class="extra_info">
{phrase var='friend.you_do_not_have_any_invoices'}
</div>
{else}
<table class="default_table" cellpadding="0" cellspacing="0">
<tr>
<th>{phrase var='friend.id'}</th>
<th>{phrase var='friend.status'}</th>
<th>{phrase var='friend.price'}</th>
<th>{phrase var='friend.date'}</th>
<th>{phrase var='friend.sent_to'}</th>
</tr>
{foreach from=$aInvoices item=aInvoice}
<tr>
<td class="t_center">{$aInvoice.invoice_id}</td>
<td>{$aInvoice.invoice_status}</td>
<td>{$aInvoice.price|currency:$aInvoice.currency_id}</td>
<td>{$aInvoice.time_stamp|date}</td>
<td>{$aInvoice|user}</td>
</tr>
{/foreach}
</table>
{/if}