minor donors update
This commit is contained in:
parent
0791d30e61
commit
cca0610cd3
@ -1,31 +1,30 @@
|
||||
<article class="module width_full">
|
||||
<header><h3>Pool Donors</h3></header>
|
||||
<div class="module_content">
|
||||
<center>
|
||||
{include file="global/pagination.tpl"}
|
||||
<table width="500px">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><u>Name</u></th>
|
||||
<th><u>%</u></th>
|
||||
<th><u>{$GLOBAL.config.currency} Total</u></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<br>
|
||||
<tbody>
|
||||
<header>
|
||||
<h3>Pool Donors</h3>
|
||||
<div class="submit_link">
|
||||
{include file="global/pagination.tpl"}
|
||||
</div>
|
||||
</header>
|
||||
<table class="tablesorter" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th align="right">%<th>
|
||||
<th align="right" style="padding-right: 25px">{$GLOBAL.config.currency} Total</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{section name=donor loop=$DONORS}
|
||||
<tr>
|
||||
<th>{if $DONORS[donor].is_anonymous|default:"0" == 1}anonymous{else}{$DONORS[donor].username}{/if}</th>
|
||||
<th>{$DONORS[donor].donate_percent}</th>
|
||||
<th>{$DONORS[donor].donation|number_format:"2"}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{if $DONORS[donor].is_anonymous|default:"0" == 1}anonymous{else}{$DONORS[donor].username}{/if}</td>
|
||||
<td align="right">{$DONORS[donor].donate_percent}</td>
|
||||
<td align="right" style="padding-right: 25px">{$DONORS[donor].donation|number_format:"2"}</td>
|
||||
</tr>
|
||||
{sectionelse}
|
||||
<tr>
|
||||
<td class="center" colspan="3">No confirmed donations yet, please be patient!</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" colspan="3">No confirmed donations yet, please be patient!</td>
|
||||
</tr>
|
||||
{/section}
|
||||
</tbody>
|
||||
</table>
|
||||
</center>
|
||||
</div>
|
||||
</tbody>
|
||||
</table>
|
||||
</article>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user