2013-08-07 20:32:44 +02:00
|
|
|
{include="header"}
|
|
|
|
|
2013-08-12 09:52:50 +02:00
|
|
|
{if condition="$notice != ''"}
|
|
|
|
<div id="notice"><p>{$notice}</p></div>
|
|
|
|
{/if}
|
|
|
|
|
2013-08-07 20:32:44 +02:00
|
|
|
<div id="quick_summary">
|
2013-08-09 23:35:20 +02:00
|
|
|
<h2>Balance</h2>
|
2013-08-17 18:43:35 +02:00
|
|
|
<p class="center">Read <em>line</em> owes <em>case</em> {$currency} to <em>column</em>. You can click on links to confirm the payback.
|
2013-08-30 20:07:52 +02:00
|
|
|
<table id="balance_table">
|
2013-08-07 20:32:44 +02:00
|
|
|
<tr>
|
2013-08-09 23:35:20 +02:00
|
|
|
<th>Owes\To</th>
|
|
|
|
{loop="users"}
|
2013-08-13 17:58:14 +02:00
|
|
|
<th>{$value->getDisplayName()}</th>
|
2013-08-09 23:35:20 +02:00
|
|
|
{/loop}
|
2013-08-07 20:32:44 +02:00
|
|
|
</tr>
|
2013-08-09 23:35:20 +02:00
|
|
|
{loop="users"}
|
|
|
|
<tr>
|
2013-08-13 17:58:14 +02:00
|
|
|
<th>{$value->getDisplayName()}</th>
|
2013-08-17 18:43:35 +02:00
|
|
|
{loop="users"}
|
|
|
|
<td><a href="">{$value->getDisplayName()}</a></td>
|
|
|
|
{/loop}
|
2013-08-09 23:35:20 +02:00
|
|
|
</tr>
|
|
|
|
{/loop}
|
2013-08-07 20:32:44 +02:00
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<div id="detailed_summary">
|
2013-08-09 23:35:20 +02:00
|
|
|
<h2>Detailed list of bills for last month</h2>
|
2013-08-07 20:32:44 +02:00
|
|
|
|
2013-09-08 18:36:59 +02:00
|
|
|
{if condition="$invoices !== false && count($invoices)>=1"}
|
2013-09-01 23:09:37 +02:00
|
|
|
<table id="list_expenses">
|
2013-08-09 23:35:20 +02:00
|
|
|
<tr>
|
2013-09-01 23:09:37 +02:00
|
|
|
<th>Date</th>
|
|
|
|
<th>Paid by</th>
|
|
|
|
<th>Users in</th>
|
|
|
|
<th>Amount</th>
|
|
|
|
<th>What ?</th>
|
|
|
|
<th>Edit</th>
|
|
|
|
<th>Delete</th>
|
2013-08-09 23:35:20 +02:00
|
|
|
</tr>
|
2013-09-01 23:09:37 +02:00
|
|
|
{loop="invoices"}
|
|
|
|
<tr>
|
2013-09-08 18:36:59 +02:00
|
|
|
<td>{$value->getDate('d-m-Y A')}</td>
|
2013-09-08 13:52:00 +02:00
|
|
|
<td>{$users[$value->getBuyer()]->getDisplayName()}</td>
|
2013-09-08 16:12:30 +02:00
|
|
|
<td>{function="formatUsersIn($value->getUsersIn(), $users)"}</td>
|
2013-09-01 23:09:37 +02:00
|
|
|
<td>{$value->getAmount()}</td>
|
|
|
|
<td>{$value->getWhat()}</td>
|
|
|
|
<td><a href="index.php?do=edit_invoice&id={$value->getId()}">Edit</a></td>
|
|
|
|
<td><a href="index.php?do=delete_invoice&id={$value->getId()}">Delete</a></td>
|
|
|
|
</tr>
|
|
|
|
{/loop}
|
|
|
|
</table>
|
|
|
|
{else}
|
|
|
|
<p class="center">No bills added.</p>
|
|
|
|
{/if}
|
2013-08-07 20:32:44 +02:00
|
|
|
</div>
|
2013-08-12 09:52:50 +02:00
|
|
|
{include="footer"}
|