|
| 1 | +{if $DISABLE_TRANSACTIONSUMMARY|default:"0" != 1} |
| 2 | +<div class="row"> |
| 3 | + <div class="col-lg-12"> |
| 4 | + <div class="panel panel-info"> |
| 5 | + <div class="panel-heading"> |
| 6 | + <i class="fa fa-money fa-fw"></i> {$USERNAME} Account Information |
| 7 | + </div> |
| 8 | + <div class="panel-body"> |
| 9 | + <div class="row"> |
| 10 | + <div class="col-lg-12"> |
| 11 | + <div class="panel panel-info"> |
| 12 | + <div class="panel-heading"> |
| 13 | + <i class="fa fa-credit-card fa-fw"></i> All Time Transaction Totals |
| 14 | + </div> |
| 15 | + <div class="panel-body"> |
| 16 | + <table class="table table-striped table-bordered table-hover"> |
| 17 | + <thead> |
| 18 | + <tr> |
| 19 | + {foreach $SUMMARY as $type=>$total} |
| 20 | + <th>{$type}</th> |
| 21 | + {/foreach} |
| 22 | + </tr> |
| 23 | + </thead> |
| 24 | + <tbody> |
| 25 | + <tr> |
| 26 | + {foreach $SUMMARY as $type=>$total} |
| 27 | + <td class="right">{$total|number_format:"8"}</td> |
| 28 | + {/foreach} |
| 29 | + </tr> |
| 30 | + </tbody> |
| 31 | + </table> |
| 32 | + </div> |
| 33 | + </div> |
| 34 | + </div> |
| 35 | + </div> |
| 36 | + |
| 37 | + <div class="row"> |
| 38 | + <div class="col-lg-12"> |
| 39 | + <div class="panel panel-info"> |
| 40 | + <div class="panel-heading"> |
| 41 | + <i class="fa fa-clock-o fa-fw"></i> Transactions over time |
| 42 | + </div> |
| 43 | + <div class="panel-body"> |
| 44 | + <table class="table table-striped table-bordered table-hover"> |
| 45 | + <thead> |
| 46 | + <tr> |
| 47 | + <th></th> |
| 48 | + <th>Credit</th> |
| 49 | + <th>Bonus</th> |
| 50 | + <th>Debit AP</th> |
| 51 | + <th>Debit MP</th> |
| 52 | + <th>Donation</th> |
| 53 | + {if $GLOBAL.fees > 0} |
| 54 | + <th>Fee</th> |
| 55 | + {/if} |
| 56 | + <th>TXFee</th> |
| 57 | + </tr> |
| 58 | + </thead> |
| 59 | + <tbody> |
| 60 | + <tr> |
| 61 | + <td>Last Hour</th> |
| 62 | + <td>{$BYTIME.1HourCredit|number_format:"8"}</td> |
| 63 | + <td>{$BYTIME.1HourBonus|number_format:"8"}</td> |
| 64 | + <td>{$BYTIME.1HourDebitAP|number_format:"8"}</td> |
| 65 | + <td>{$BYTIME.1HourDebitMP|number_format:"8"}</td> |
| 66 | + <td>{$BYTIME.1HourDonation|number_format:"8"}</td> |
| 67 | + {if $GLOBAL.fees|default:"0" > 0} |
| 68 | + <td>{$BYTIME.1HourFee|number_format:"8"}</td> |
| 69 | + {/if} |
| 70 | + <td>{$BYTIME.1HourTXFee|number_format:"8"}</td> |
| 71 | + </tr> |
| 72 | + <tr> |
| 73 | + <td>Last Day</th> |
| 74 | + <td>{$BYTIME.24HourCredit|number_format:"8"}</td> |
| 75 | + <td>{$BYTIME.24HourBonus|number_format:"8"}</td> |
| 76 | + <td>{$BYTIME.24HourDebitAP|number_format:"8"}</td> |
| 77 | + <td>{$BYTIME.24HourDebitMP|number_format:"8"}</td> |
| 78 | + <td>{$BYTIME.24HourDonation|number_format:"8"}</td> |
| 79 | + {if $GLOBAL.fees|default:"0" > 0} |
| 80 | + <td>{$BYTIME.24HourFee|number_format:"8"}</td> |
| 81 | + {/if} |
| 82 | + <td>{$BYTIME.24HourTXFee|number_format:"8"}</td> |
| 83 | + </tr> |
| 84 | + <tr> |
| 85 | + <td>Last Week</th> |
| 86 | + <td>{$BYTIME.1WeekCredit|number_format:"8"}</td> |
| 87 | + <td>{$BYTIME.1WeekBonus|number_format:"8"}</td> |
| 88 | + <td>{$BYTIME.1WeekDebitAP|number_format:"8"}</td> |
| 89 | + <td>{$BYTIME.1WeekDebitMP|number_format:"8"}</td> |
| 90 | + <td>{$BYTIME.1WeekDonation|number_format:"8"}</td> |
| 91 | + {if $GLOBAL.fees|default:"0" > 0} |
| 92 | + <td>{$BYTIME.1WeekFee|number_format:"8"}</td> |
| 93 | + {/if} |
| 94 | + <td>{$BYTIME.1WeekTXFee|number_format:"8"}</td> |
| 95 | + </tr> |
| 96 | + <tr> |
| 97 | + <td>Last Month</th> |
| 98 | + <td>{$BYTIME.1MonthCredit|number_format:"8"}</td> |
| 99 | + <td>{$BYTIME.1MonthBonus|number_format:"8"}</td> |
| 100 | + <td>{$BYTIME.1MonthDebitAP|number_format:"8"}</td> |
| 101 | + <td>{$BYTIME.1MonthDebitMP|number_format:"8"}</td> |
| 102 | + <td>{$BYTIME.1MonthDonation|number_format:"8"}</td> |
| 103 | + {if $GLOBAL.fees|default:"0" > 0} |
| 104 | + <td>{$BYTIME.1MonthFee|number_format:"8"}</td> |
| 105 | + {/if} |
| 106 | + <td>{$BYTIME.1MonthTXFee|number_format:"8"}</td> |
| 107 | + </tr> |
| 108 | + <tr> |
| 109 | + <td>Last Year</th> |
| 110 | + <td>{$BYTIME.1YearCredit|number_format:"8"}</td> |
| 111 | + <td>{$BYTIME.1YearBonus|number_format:"8"}</td> |
| 112 | + <td>{$BYTIME.1YearDebitAP|number_format:"8"}</td> |
| 113 | + <td>{$BYTIME.1YearDebitMP|number_format:"8"}</td> |
| 114 | + <td>{$BYTIME.1YearDonation|number_format:"8"}</td> |
| 115 | + {if $GLOBAL.fees|default:"0" > 0} |
| 116 | + <td>{$BYTIME.1YearFee|number_format:"8"}</td> |
| 117 | + {/if} |
| 118 | + <td>{$BYTIME.1YearTXFee|number_format:"8"}</td> |
| 119 | + </tr> |
| 120 | + </tbody> |
| 121 | + </table> |
| 122 | + </div> |
| 123 | + </div> |
| 124 | + </div> |
| 125 | + </div> |
| 126 | + |
| 127 | + </div> |
| 128 | + </div> |
| 129 | + </div> |
| 130 | +</div> |
| 131 | +{/if} |
| 132 | + |
| 133 | + |
0 commit comments