php-mpos/public/templates/mmcFE/about/donors/default.tpl
Sebastian Grewe 2e7a4a8092 Adding donors page to About dropdown
Lists all donors, their donation setting and total donated amount.
This will allow people to see who is contributing to the pool.

Fixes #223
2013-06-23 20:12:34 +02:00

28 lines
747 B
Smarty

{include file="global/block_header.tpl" BLOCK_HEADER="Pool Donors"}
<center>
{include file="global/pagination.tpl"}
<table width="500px" class="pagesort">
<thead>
<tr>
<th>Name</th>
<th class="center">%</th>
<th class="right">{$GLOBAL.config.currency} Total</th>
</tr>
</thead>
<tbody>
{section name=donor loop=$DONORS}
<tr>
<td>{$DONORS[donor].username}</td>
<td class="center">{$DONORS[donor].donate_percent}</td>
<td class="right">{$DONORS[donor].donation|number_format:"2"}</td>
</tr>
{sectionelse}
<tr>
<td class="center" colspan="3">No donors yet! Be the first one to donate!</td>
</tr>
{/section}
</tbody>
</table>
</center>
{include file="global/block_footer.tpl"}