You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.2 KiB

7 years ago
7 years ago
7 years ago
  1. <div class="page-header">
  2. <h2 class="page-title"><?=$this->site->config('point_name')?> 관리</h2>
  3. </div>
  4. <div class="grid">
  5. <table>
  6. <thead>
  7. <tr>
  8. <th class="W100">#</th>
  9. <th class="W150">일시</th>
  10. <th class="W150">사용자</th>
  11. <th class="W100"><?=$this->site->config('point_name')?></th>
  12. <th>내용</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <?php foreach($list['list'] as $row) :?>
  17. <tr>
  18. <td class="text-right"><?=number_format($row['nums'])?></td>
  19. <td class="text-center"><?=$row['mpo_regtime']?></td>
  20. <td class="text-center"><?=$row['mem_nickname']?><?=display_member_menu($row['mem_idx'], '<i class="far fa-cog"></i>', $row['mem_status'])?></td>
  21. <td class="text-right"><?=$row['mpo_value']>0?'+':''?><?=$row['mpo_value']?></td>
  22. <td><?=$row['mpo_description']?></td>
  23. </tr>
  24. <?php endforeach;?>
  25. <?php if(count($list['list']) == 0) :?>
  26. <tr>
  27. <td class="empty" colspan="5">검색된 내역이 없습니다.</td>
  28. </tr>
  29. <?php endif;?>
  30. </tbody>
  31. </table>
  32. </div>
  33. <div class="text-center MT10">
  34. <?=$pagination?>
  35. </div>