Advertisement
Guest User

deposit,confirm

a guest
Mar 3rd, 2019
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Smarty 2.24 KB | None | 0 0
  1. {include file="header.tpl"}
  2.  
  3. {if $false_data != 1}
  4. <h6>Deposit Confirmation</h6>
  5.                 </div>
  6.                 <div class="headborderr">
  7.                     <img src="images/borderyel.png">
  8.                 </div>
  9. </div>
  10.  
  11. <table cellspacing=0 cellpadding=2 class="tab">
  12. {if $deposit.id > 0}
  13. <tr>
  14.  <th>Plan:</th>
  15.  <td>{$deposit.name|escape:html}</td>
  16.  <td rowspan=6>{$coin_payment_image}</td>
  17. </tr>
  18. <tr>
  19.  <th>Profit:</th>
  20.  <td>{$deposit.percent}% {if $deposit.period == 'end'}after {$deposit.periods} days{else}{$deposit.period_name} for {if $deposit.periods == 0}lifelong{else}{$deposit.periods} {$deposit.time_units}{if $deposit.time_units != 1}s{/if} {if $deposit.work_week}(mon-fri){/if}{/if}{/if}</td>
  21. </tr>
  22. <tr>
  23.  <th>Principal Return:</th>
  24.  <td>{if $deposit.principal_return}Yes{if $deposit.principal_return_hold_percent > 0}, with {$deposit.principal_return_hold_percent|number_format:2}% fee{/if}{else}No (included in profit){/if}</td>
  25. </tr>
  26. <tr>
  27.  <th>Principal Withdraw:</th>
  28.  <td>
  29. {if $deposit.principal_withdraw}Available with
  30. {foreach from=$deposit.principal_withdraw_terms item=t name=wpt}
  31. {$t.percent}% fee {if $t.duration > 0}after {$t.duration} days{/if}{if !$smarty.foreach.wpt.last} or {/if}
  32. {/foreach}
  33. {if $deposit.principal_withdraw_duration_max} but before {$deposit.principal_withdraw_duration_max|number_format} days{/if}
  34. {else}Not available{/if}
  35.  </td>
  36. </tr>
  37. {if $deposit.use_compound == 1}
  38. <tr>
  39.  <th>Compound:</th>
  40.  <td>{$deposit.compound|number_format}%</td>
  41. </tr>
  42. {/if}
  43. {/if} {* $deposit.id *}
  44.  
  45. {if $deposit.ec_fees.fee}
  46. <tr>
  47.  <th>Credit Amount:</th>
  48.  <td>{$currency_sign}{$deposit.user_amount}</td>
  49. </tr>
  50. <tr>
  51.  <th>Deposit Fee:</th>
  52.  <td>{$deposit.ec_fees.percent}% + {$currency_sign}{$deposit.ec_fees.add_amount} (min. {$currency_sign}{$deposit.ec_fees.fee_min} max. {$currency_sign}{$deposit.ec_fees.fee_max})</td>
  53. </tr>
  54. {/if}
  55. {if $deposit.converted_amount}
  56. <tr>
  57.  <th>Debit Amount:</th>
  58.  <td>{$currency_sign}{$deposit.converted_amount}</td>
  59. </tr>
  60. <tr>
  61.  <th>{$deposit.converted_fiat} Debit Amount:</th>
  62.  <td>{$deposit.amount}</td>
  63. </tr>
  64. {else}
  65. <tr>
  66.  <th>Debit Amount:</th>
  67.  <td>{$currency_sign}{$deposit.amount}</td>
  68. </tr>
  69. {/if}
  70. </table>
  71.  
  72. {$payment_form}
  73. {/if}
  74. {include file="footer.tpl"}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement