receive.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. {include file="public/header" /}
  2. <div class="page">
  3. <table class="ds-default-table">
  4. <thead>
  5. <tr>
  6. <th>{$Think.lang.ds_member_name}</th>
  7. <th>{$Think.lang.bonusreceive_time}</th>
  8. <th>{$Think.lang.bonusreceive_transformed}</th>
  9. <th>{$Think.lang.bonusreceive_price}</th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. {notempty name="bonusreceive_list"}
  14. {foreach name="bonusreceive_list" item="bonusreceive"}
  15. <tr>
  16. <td>{$bonusreceive.member_name|default=''}</td>
  17. <td>{if $bonusreceive.bonusreceive_time neq 0}{$bonusreceive.bonusreceive_time|date="Y-m-d H:i:s"}{/if}</td>
  18. <td>{$bonusreceive.bonusreceive_transformed}</td>
  19. <td>{$bonusreceive.bonusreceive_price}</td>
  20. </tr>
  21. {/foreach}
  22. {else /}
  23. <tr class="no_data">
  24. <td colspan="10">{$Think.lang.ds_no_record}</td>
  25. </tr>
  26. {/notempty}
  27. </tbody>
  28. </table>
  29. {$show_page|raw}
  30. </div>