55 lines
1.5 KiB
HTML
Executable File
55 lines
1.5 KiB
HTML
Executable File
{include="header"}
|
|
|
|
{if condition="$notice != ''"}
|
|
<div id="notice"><p>{$notice}</p></div>
|
|
{/if}
|
|
|
|
<div id="quick_summary">
|
|
<h2>Balance</h2>
|
|
<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.
|
|
<table>
|
|
<tr>
|
|
<th>Owes\To</th>
|
|
{loop="users"}
|
|
<th>{$value->getDisplayName()}</th>
|
|
{/loop}
|
|
</tr>
|
|
{loop="users"}
|
|
<tr>
|
|
<th>{$value->getDisplayName()}</th>
|
|
{loop="users"}
|
|
<td><a href="">{$value->getDisplayName()}</a></td>
|
|
{/loop}
|
|
</tr>
|
|
{/loop}
|
|
</table>
|
|
</div>
|
|
<div id="detailed_summary">
|
|
<h2>Detailed list of bills for last month</h2>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Date</th>
|
|
<th>Paid by</th>
|
|
<th>Users in</th>
|
|
<th>Amount</th>
|
|
<th>What ?</th>
|
|
<th>Edit</th>
|
|
<th>Delete</th>
|
|
</tr>
|
|
{loop="invoices"}
|
|
<tr>
|
|
<td>{$value->getDate()}</td>
|
|
<td>{$value->getBuyer()}</td>
|
|
<td>{$value->getUsersIn()}</td>
|
|
<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>
|
|
</div>
|
|
|
|
{include="footer"}
|